diff -pruN 24.12.3-1/.clang-format 25.08.0-0ubuntu1/.clang-format
--- 24.12.3-1/.clang-format	1970-01-01 00:00:00.000000000 +0000
+++ 25.08.0-0ubuntu1/.clang-format	2025-07-31 22:47:59.000000000 +0000
@@ -0,0 +1,122 @@
+---
+# SPDX-FileCopyrightText: 2019 Christoph Cullmann <cullmann@kde.org>
+# SPDX-FileCopyrightText: 2019 Gernot Gebhard <gebhard@absint.com>
+#
+# SPDX-License-Identifier: MIT
+
+# 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
+BasedOnStyle: WebKit
+---
+
+# 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
+#KDevelop overrides ColumnLimit: 160
+ColumnLimit: 120
+
+# sort includes inside line separated groups
+#TODO: set back to true just before reformatting all KDevelop sources.
+SortIncludes: false
+
+# break before braces on function, namespace and class definitions.
+#KDevelop overrides BreakBeforeBraces: Linux
+BreakBeforeBraces: Custom
+BraceWrapping:
+    AfterCaseLabel: false
+    AfterClass: true
+    AfterControlStatement: false
+    AfterEnum: false
+    AfterFunction: true
+    AfterNamespace: false
+    AfterStruct: true
+    AfterUnion: false
+    AfterExternBlock: false
+    BeforeCatch: false
+    BeforeElse: false
+    IndentBraces: false
+    SplitEmptyFunction: true
+    SplitEmptyRecord: true
+    SplitEmptyNamespace: true
+
+# CrlInstruction *a;
+#KDevelop overrides PointerAlignment: Right
+PointerAlignment: Left
+
+# 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
+#KDevelop overrides BinPackArguments: false
+BinPackArguments: true
+
+# don't move parameters to own lines if they are not all on the same
+#KDevelop overrides BinPackParameters: false
+BinPackParameters: true
+
+# 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.
+#KDevelop prepends FOREACH_FUNCTION and FOREACH_FUNCTION_STATIC:
+ForEachMacros: [ FOREACH_FUNCTION, FOREACH_FUNCTION_STATIC, 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
+
+#KDevelop adds:
+
+# Prevent clang-format from inserting a space after `//`. There are plenty of comments like
+# `//comment` in KDevelop code. We don't want to change them all just to insert this space.
+CommentPragmas: '^[^ ]'
diff -pruN 24.12.3-1/.gitlab-ci.yml 25.08.0-0ubuntu1/.gitlab-ci.yml
--- 24.12.3-1/.gitlab-ci.yml	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/.gitlab-ci.yml	2025-07-31 22:47:59.000000000 +0000
@@ -5,4 +5,5 @@ include:
   - project: sysadmin/ci-utilities
     file:
       - /gitlab-templates/linux-qt6.yml
+      - /gitlab-templates/linux-qt6-next.yml
       - /gitlab-templates/freebsd-qt6.yml
diff -pruN 24.12.3-1/CMakeLists.txt 25.08.0-0ubuntu1/CMakeLists.txt
--- 24.12.3-1/CMakeLists.txt	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/CMakeLists.txt	2025-07-31 22:47:59.000000000 +0000
@@ -1,9 +1,9 @@
 cmake_minimum_required(VERSION 3.19)
 
 # KDE Gear version, managed by release service script
-set(RELEASE_SERVICE_VERSION_MAJOR "24")
-set(RELEASE_SERVICE_VERSION_MINOR "12")
-set(RELEASE_SERVICE_VERSION_MICRO "3")
+set(RELEASE_SERVICE_VERSION_MAJOR "25")
+set(RELEASE_SERVICE_VERSION_MINOR "08")
+set(RELEASE_SERVICE_VERSION_MICRO "0")
 
 # generate patch level from release service version
 set(_micro ${RELEASE_SERVICE_VERSION_MICRO})
diff -pruN 24.12.3-1/app_templates/django_project/django_project.kdevtemplate 25.08.0-0ubuntu1/app_templates/django_project/django_project.kdevtemplate
--- 24.12.3-1/app_templates/django_project/django_project.kdevtemplate	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/app_templates/django_project/django_project.kdevtemplate	2025-07-31 22:47:59.000000000 +0000
@@ -15,6 +15,7 @@ Name[fi]=Django 1.11
 Name[fr]=Django 1.11
 Name[gl]=Django 1.11
 Name[he]=Django 1.11
+Name[hi]=डेन्जो 1.11
 Name[ia]=Django 1.11
 Name[it]=Django 1.11
 Name[ka]=Django 1.11
@@ -25,6 +26,7 @@ Name[pl]=Django 1.11
 Name[pt]=Django 1.11
 Name[pt_BR]=Django 1.11
 Name[ru]=Django 1.11
+Name[sa]=ड्जङ्गो १.११
 Name[sk]=Django 1.11
 Name[sl]=Django 1.11
 Name[sv]=Django 1.11
@@ -48,6 +50,7 @@ Comment[fi]=Yhden sovelluksen Django-pro
 Comment[fr]=Un projet Django avec une application
 Comment[gl]=Un proxecto de Django cunha aplicación
 Comment[he]=מיזם Django עם יישום אחד
+Comment[hi]=एक अनुप्रयोग के साथ एक Django परियोजना
 Comment[ia]=Un projecto Django con un application
 Comment[it]=Un progetto Django con un'applicazione
 Comment[ka]=Django-ის პროექტი ერთი აპლიკაციით
@@ -58,6 +61,7 @@ Comment[pl]=Projekt Django wewnątrz jed
 Comment[pt]=um projecto de Django com uma aplicação
 Comment[pt_BR]=Um projeto de Django com um aplicativo
 Comment[ru]=Проект Django с одной программой
+Comment[sa]=एकेन अनुप्रयोगेन सह एकः Django परियोजना
 Comment[sk]=Django project s jednou aplikáciou
 Comment[sl]=Projekt Django z enim programom
 Comment[sv]=Ett Django-projekt med ett program
diff -pruN 24.12.3-1/app_templates/qtdesigner_app/qtdesigner_app.kdevtemplate 25.08.0-0ubuntu1/app_templates/qtdesigner_app/qtdesigner_app.kdevtemplate
--- 24.12.3-1/app_templates/qtdesigner_app/qtdesigner_app.kdevtemplate	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/app_templates/qtdesigner_app/qtdesigner_app.kdevtemplate	2025-07-31 22:47:59.000000000 +0000
@@ -15,6 +15,7 @@ Name[fi]=Yksinkertainen Qt:n graafinen s
 Name[fr]=Simple application graphique avec Qt en utilisant Designer
 Name[gl]=Aplicación simple con interface gráfica feita en Qt usando Designer
 Name[he]=יישום ממשק משתמש פשוט עם Qt באמצעות Deisgner
+Name[hi]=डिज़ाइनर का उपयोग करके सरल Qt GUI अनुप्रयोग
 Name[it]=Semplice applicazione grafica Qt che usa Designer
 Name[ka]=Designer-ით შექმნილი მარტივი Qt GUI აპლიკაცია
 Name[ko]=Designer를 사용하는 간단한 Qt GUI 앱
@@ -24,10 +25,11 @@ Name[pl]=Prosta aplikacja z interfejsem
 Name[pt]=Aplicação gráfica simples o Qt que usa o Designer
 Name[pt_BR]=Aplicativo gráfico simples em Qt usando o Designer
 Name[ru]=Простая программа с графическим интерфейсом Qt, созданным с помощью Designer
+Name[sa]=Designer इत्यस्य उपयोगेन सरलं Qt GUI अनुप्रयोगम्
 Name[sk]=Jednoduchá Qt GUI aplikácia používajúca Designer
 Name[sl]=Preprost Qt program z grafičnim vmesnikom z uporabo Snovalnika
 Name[sv]=Enkelt Qt-program med grafiskt användargränssnitt som använder Designer
-Name[tr]=Designer kullanarak Basit Bir QT GUI uygulaması
+Name[tr]=Designer Kullanan Basit Bir Qt GUI Uygulaması
 Name[uk]=Проста програма з графічним інтерфейсом Qt, створеним за допомогою Designer
 Name[x-test]=xxSimple Qt GUI application using Designerxx
 Name[zh_CN]=使用 Designer 的简单的 Qt 图形界面程序
@@ -47,6 +49,7 @@ Comment[fi]=Qt Designeria käyttävä es
 Comment[fr]=Une application d'exemple en utilisant Qt Designer. Si vous éditez « mainwindow.ui », générez à nouveau « mainwindow.py » en appelant « pyuic5 ».
 Comment[gl]=Unha aplicación de exemplo usando Qt Designer. Se edita mainwindow.ui, xere de novo mainwindow.py executando pyuic5.
 Comment[he]=יישום לדוגמה בעזרת Qt Designer. אם בחרת לערוך את mainwindow.ui, יש לייצר את mainwindow.py מחדש על ידי קריאה ל־pyuic5.
+Comment[hi]=Qt Designer का उपयोग करने वाला एक उदाहरण अनुप्रयोग। यदि आप mainwindow.ui संपादित करते हैं, तो pyuic5 को कॉल करके mainwindow.py को पुनः उत्पन्न करें।
 Comment[it]=Un'applicazione di esempio che usa Qt Designer. Se modifichi mainwindow.ui, rigenera mainwindow.py eseguendo pyuic5.
 Comment[ka]=სამაგალითო აპლიკაცია Qt Designer-ის გამოყენებით. თუ ჩაასწორებთ ფაილს mainwindow.ui, manwindow.py ფაილის თავიდან გენერაცია pyuic5-ის გაშვებით შეგიძლიათ.
 Comment[ko]=Qt Designer를 사용하는 간단한 앱입니다. mainwindow.ui 파일을 편집했다면 pyuic5를 실행하여 mainwindow.py를 다시 생성하십시오.
@@ -56,10 +59,11 @@ Comment[pl]=Przykładowa aplikacja wykor
 Comment[pt]=Uma aplicação de exemplo que usa o Qt Designer. Se editar o 'mainwindow.ui', volte a gerar o 'mainwindow.py' ao invocar o 'pyuic5'.
 Comment[pt_BR]=Um aplicativo de exemplo que usa o Qt Designer. Se editar o 'mainwindow.ui', gere novamente o 'mainwindow.py' ao chamar o 'pyuic5'.
 Comment[ru]=Пример программы с использованием Qt Designer. После редактирования mainwindow.ui следует создать mainwindow.py с помощью вызова pyuic5.
+Comment[sa]=Qt Designer इत्यस्य उपयोगेन एकः उदाहरणम् अनुप्रयोगः । यदि भवान् mainwindow.ui सम्पादयति तर्हि pyuic5 इति आह्वयित्वा mainwindow.py पुनः उत्पन्नं कुर्वन्तु ।
 Comment[sk]=Ukážková aplikácia používajúca Qt Designer. Ak upravíte mainwindow.ui, pregenerujte mainwindow.py volaním pyuic5.
 Comment[sl]=Preprost Qt program z grafičnim vmesnikom z uporabo Snovalnika. Če boste urejali mainwindow.ui, znova ustvarite mainwindow.py s klicem pyuic5.
 Comment[sv]=Ett exempelprogram som använder Qt-designer. Om du redigerar mainwindo.ui, skapa om mainwindow.py genom att anropa pyuic5.
-Comment[tr]=Qt Designer kullanan örnek bir uygulama. mainwindow.ui dosyasını düzenlerseniz pyuic5'i çağırarak mainwindow.py dosyasını yeniden üretin.
+Comment[tr]=Qt Designer kullanan örnek bir uygulama. mainwindow.ui dosyasını düzenlerseniz pyuic5’i çağırarak mainwindow.py dosyasını yeniden üretin.
 Comment[uk]=Приклад програми із використанням Qt Designer. Після редагування mainwindow.ui вам слід повторно створити mainwindow.py за допомогою виклику pyuic5.
 Comment[x-test]=xxAn example application using Qt Designer. If you edit mainwindow.ui, regenerate mainwindow.py by calling pyuic5.xx
 Comment[zh_CN]=一个使用 Qt Designer 的简单应用程序。如果您编辑了 mainwindow.ui，调用 pyuic5 来重新生成 mainwindow.py。
diff -pruN 24.12.3-1/app_templates/simple_pythonapp/simple_pythonapp.kdevtemplate 25.08.0-0ubuntu1/app_templates/simple_pythonapp/simple_pythonapp.kdevtemplate
--- 24.12.3-1/app_templates/simple_pythonapp/simple_pythonapp.kdevtemplate	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/app_templates/simple_pythonapp/simple_pythonapp.kdevtemplate	2025-07-31 22:47:59.000000000 +0000
@@ -15,6 +15,7 @@ Name[fi]=Yksinkertainen Python-sovellus
 Name[fr]=Simple application en Python
 Name[gl]=Aplicación simple en Python
 Name[he]=יישום Python פשוט
+Name[hi]=सरल पायथन अनुप्रयोग
 Name[it]=Semplice applicazione Python
 Name[ka]=Python-ის მარტივი აპლიკაცია
 Name[ko]=간단한 파이썬 앱
@@ -24,6 +25,7 @@ Name[pl]=Prosta aplikacja Pythona
 Name[pt]=Aplicação Simples de Python
 Name[pt_BR]=Aplicativo simples em Python
 Name[ru]=Простая программа на языке Python
+Name[sa]=सरल पायथन अनुप्रयोग
 Name[sk]=Jednoduchá Python aplikácia
 Name[sl]=Preprost program v Python-u
 Name[sv]=Enkelt Python-program
@@ -48,6 +50,7 @@ Comment[fi]=Aloita Python-sovellus luoma
 Comment[fr]=Générer la structure de fichier pour démarrer une application en Python
 Comment[gl]=Xera a estrutura de ficheiros para comezar unha aplicación en Python
 Comment[he]=יצירת מבנה קבצים להתחלת יישום Python
+Comment[hi]=पायथन अनुप्रयोग शुरू करने के लिए फ़ाइल संरचना उत्पन्न करें
 Comment[ia]=Genera structura de file per initiar un application de Python
 Comment[it]=Genera una struttura file per avviare un'applicazione in Python
 Comment[ka]=ფაილური სტრუქტურის გენერაცია Python აპლიკაციის გასაშვებად
@@ -58,6 +61,7 @@ Comment[pl]=Tworzy strukturę plików do
 Comment[pt]=Gerar a estrutura de ficheiros para iniciar uma aplicação em Python
 Comment[pt_BR]=Gera a estrutura de arquivos para iniciar um aplicativo Python
 Comment[ru]=Создание файловой структуры для запуска программы на языке Python
+Comment[sa]=पायथन् अनुप्रयोगं आरभ्य सञ्चिकासंरचनां जनयन्तु
 Comment[sk]=Vygenerovať štruktúru súborov na spustenie aplikácie Python
 Comment[sl]=Ustvari datotečno zgradbo za začetek programa v Python-u
 Comment[sv]=Skapa filstruktur för att påbörja ett Python-program
diff -pruN 24.12.3-1/debian/changelog 25.08.0-0ubuntu1/debian/changelog
--- 24.12.3-1/debian/changelog	2025-03-24 05:41:46.000000000 +0000
+++ 25.08.0-0ubuntu1/debian/changelog	2025-08-14 10:51:54.000000000 +0000
@@ -1,3 +1,57 @@
+kdevelop-python (25.08.0-0ubuntu1) questing; urgency=medium
+
+  * New upstream release (25.08.0)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 14 Aug 2025 11:51:54 +0100
+
+kdevelop-python (25.07.90-0ubuntu1) questing; urgency=medium
+
+  * New upstream (RC) release (25.07.90)
+
+ -- Rik Mills <rikmills@kde.org>  Fri, 25 Jul 2025 17:44:25 +0100
+
+kdevelop-python (25.07.80-0ubuntu1) questing; urgency=medium
+
+  * New upstream (beta) release (25.07.80)
+  * d/rules: Bump KDEV_PLUGIN_VERSION to 63.
+
+ -- Rik Mills <rikmills@kde.org>  Sun, 13 Jul 2025 13:24:18 +0100
+
+kdevelop-python (25.04.3-0ubuntu1) questing; urgency=medium
+
+  * New upstream release (25.04.3)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 03 Jul 2025 07:42:16 +0100
+
+kdevelop-python (25.04.2-0ubuntu1) questing; urgency=medium
+
+  * New upstream release (25.04.2)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 05 Jun 2025 11:44:14 +0100
+
+kdevelop-python (25.04.1-0ubuntu1) questing; urgency=medium
+
+  * New upstream release (25.04.1)
+
+ -- Rik Mills <rikmills@kde.org>  Wed, 07 May 2025 22:05:44 +0100
+
+kdevelop-python (25.04.0-0ubuntu1) questing; urgency=medium
+
+  * New upstream release (25.04.0)
+  * d/rules: Bump KDEV_PLUGIN_VERSION to 62
+
+ -- Rik Mills <rikmills@kde.org>  Wed, 30 Apr 2025 19:48:27 +0100
+
+kdevelop-python (24.12.3-1ubuntu1) plucky; urgency=medium
+
+  * Merge from Debian unstable. Remaining changes:
+    - Kubuntu Vcs and maintainer fields.
+    - Build depend and depend on python3-defaults meta packages instead
+      of specific versions.
+    - Limit build to architectures where kdevelop-dev is available.
+
+ -- Rik Mills <rikmills@kde.org>  Mon, 24 Mar 2025 09:45:26 +0000
+
 kdevelop-python (24.12.3-1) unstable; urgency=medium
 
   * New upstream release.
@@ -8,6 +62,18 @@ kdevelop-python (24.12.3-1) unstable; ur
 
  -- Pino Toscano <pino@debian.org>  Mon, 24 Mar 2025 06:41:46 +0100
 
+kdevelop-python (24.12.3-0ubuntu1) plucky; urgency=medium
+
+  * New upstream release (24.12.3)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 06 Mar 2025 08:40:59 +0000
+
+kdevelop-python (24.12.2-0ubuntu1) plucky; urgency=medium
+
+  * New upstream release (24.12.2)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 06 Feb 2025 14:15:34 +0000
+
 kdevelop-python (24.12.1-1) unstable; urgency=medium
 
   [ Stuart Prescott ]
@@ -25,6 +91,96 @@ kdevelop-python (24.12.1-1) unstable; ur
 
  -- Aurélien COUDERC <coucouf@debian.org>  Wed, 22 Jan 2025 23:59:29 +0100
 
+kdevelop-python (24.12.1-0ubuntu1) plucky; urgency=medium
+
+  * New upstream release (24.12.1)
+  * Limit build to architectures where kdevelop-dev is available.
+
+ -- Rik Mills <rikmills@kde.org>  Sat, 11 Jan 2025 14:30:10 +0000
+
+kdevelop-python (24.12.0-0ubuntu4) plucky; urgency=medium
+
+  * Build depend and depend on python3-defaults meta packages instead of
+    specific versions.
+
+ -- Rik Mills <rikmills@kde.org>  Sun, 05 Jan 2025 11:40:51 +0000
+
+kdevelop-python (24.12.0-0ubuntu3) plucky; urgency=medium
+
+  * Fix build with python 3.13 as default.
+
+ -- Rik Mills <rikmills@kde.org>  Sat, 04 Jan 2025 14:53:46 +0000
+
+kdevelop-python (24.12.0-0ubuntu2) plucky; urgency=medium
+
+  * No-change rebuild for Python 3.13 as the default.
+
+ -- Matthias Klose <doko@ubuntu.com>  Fri, 03 Jan 2025 12:05:39 +0100
+
+kdevelop-python (24.12.0-0ubuntu1) plucky; urgency=medium
+
+  * New upstream release (24.12.0)
+  * Update build deps and build system for Qt6/KF6.
+  * Bump KDEV_PLUGIN_VERSION to 61, according to upstream.
+  * Update install files.
+  * Bump stardards to 4.7.0, no changes required.
+
+ -- Rik Mills <rikmills@kde.org>  Mon, 30 Dec 2024 03:22:38 +0000
+
+kdevelop-python (23.08.5-0ubuntu4) noble; urgency=medium
+
+  * No-change rebuild for CVE-2024-3094
+
+ -- William Grant <wgrant@ubuntu.com>  Mon, 01 Apr 2024 17:02:15 +1100
+
+kdevelop-python (23.08.5-0ubuntu3) noble; urgency=medium
+
+  * No-change rebuild against libqt5core5t64
+
+ -- Steve Langasek <steve.langasek@ubuntu.com>  Fri, 15 Mar 2024 04:53:09 +0000
+
+kdevelop-python (23.08.5-0ubuntu2) noble; urgency=medium
+
+  * No-change rebuild for python3.12 t64.
+
+ -- Matthias Klose <doko@ubuntu.com>  Sat, 02 Mar 2024 21:10:18 +0100
+
+kdevelop-python (23.08.5-0ubuntu1) noble; urgency=medium
+
+  * New upstream release (23.08.5)
+
+ -- Scarlett Moore <sgmoore@debian.org>  Thu, 22 Feb 2024 09:44:37 -0700
+
+kdevelop-python (23.08.4-0ubuntu3) noble; urgency=medium
+
+  * Switch python build and runtime dependencies from 3.11 to 3.12.
+
+ -- Rik Mills <rikmills@kde.org>  Mon, 22 Jan 2024 06:52:04 +0000
+
+kdevelop-python (23.08.4-0ubuntu2) noble; urgency=medium
+
+  * No-change rebuild with Python 3.12 as default
+
+ -- Graham Inggs <ginggs@ubuntu.com>  Fri, 19 Jan 2024 19:43:06 +0000
+
+kdevelop-python (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:14:41 +0000
+
+kdevelop-python (23.08.3-0ubuntu1) noble; urgency=medium
+
+  * New upstream release (23.08.3)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 09 Nov 2023 11:34:14 +0000
+
+kdevelop-python (23.08.2-0ubuntu1) noble; urgency=medium
+
+  * New upstream release (23.08.2)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 26 Oct 2023 12:30:31 +0100
+
 kdevelop-python (23.08.1-2) unstable; urgency=medium
 
   * Team upload.
@@ -42,6 +198,46 @@ kdevelop-python (23.08.1-1) unstable; ur
 
  -- Pino Toscano <pino@debian.org>  Sun, 24 Sep 2023 17:22:33 +0200
 
+kdevelop-python (23.08.1-0ubuntu1) mantic; urgency=medium
+
+  * New upstream release (23.08.1)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 14 Sep 2023 11:58:33 +0100
+
+kdevelop-python (23.08.0-0ubuntu1) mantic; urgency=medium
+
+  * New upstream release (23.08.0)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 24 Aug 2023 12:53:27 +0100
+
+kdevelop-python (23.07.90-0ubuntu1) mantic; urgency=medium
+
+  * New upstream (beta) release (23.07.80)
+  * Bump KDEV_PLUGIN_VERSION to 512, according to upstream.
+  * New upstream (RC) release (23.07.90)
+
+ -- Rik Mills <rikmills@kde.org>  Tue, 15 Aug 2023 02:33:18 +0100
+
+kdevelop-python (23.04.3-0ubuntu1) mantic; urgency=medium
+
+  * New upstream release (23.04.3)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 06 Jul 2023 14:46:03 +0100
+
+kdevelop-python (23.04.2-0ubuntu1) mantic; urgency=medium
+
+  * New upstream release (23.04.1)
+  * Adjust KDEV_PLUGIN_VERSION=511 in debian/rules
+  * New upstream release (23.04.2)
+
+ -- José Manuel Santamaría Lema <panfaust@gmail.com>  Sat, 10 Jun 2023 11:56:23 +0100
+
+kdevelop-python (22.12.3-0ubuntu1) lunar; urgency=medium
+
+  * New upstream release (22.12.3)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 02 Mar 2023 00:37:26 +0000
+
 kdevelop-python (22.12.2-1) unstable; urgency=medium
 
   * New upstream release.
@@ -53,6 +249,26 @@ kdevelop-python (22.12.2-1) unstable; ur
 
  -- Pino Toscano <pino@debian.org>  Sun, 05 Feb 2023 12:59:51 +0100
 
+kdevelop-python (22.12.2-0ubuntu1) lunar; urgency=medium
+
+  * New upstream release (22.12.2)
+  * Remove reverse-applicable upstream patch.
+
+ -- Simon Quigley <tsimonq2@kubuntu.org>  Sat, 11 Feb 2023 14:15:48 -0600
+
+kdevelop-python (22.12.1-0ubuntu1) lunar; urgency=medium
+
+  * New upstream release (22.12.1)
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 05 Jan 2023 11:14:16 +0000
+
+kdevelop-python (22.12.0-3ubuntu1) lunar; urgency=medium
+
+  * Merge from debian unstable. Remaining changes:
+    - Kubuntu Vcs and maintainer fields.
+
+ -- Rik Mills <rikmills@kde.org>  Thu, 05 Jan 2023 10:00:34 +0000
+
 kdevelop-python (22.12.0-3) unstable; urgency=medium
 
   * Drop upstream_support-for-the-most-basic-cases-of-python-3.10-s-ma.patch:
diff -pruN 24.12.3-1/debian/control 25.08.0-0ubuntu1/debian/control
--- 24.12.3-1/debian/control	2025-03-23 19:05:24.000000000 +0000
+++ 25.08.0-0ubuntu1/debian/control	2025-08-14 10:51:54.000000000 +0000
@@ -1,15 +1,16 @@
 Source: kdevelop-python
 Section: devel
 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>,
            Pino Toscano <pino@debian.org>,
-Build-Depends: debhelper-compat (= 13),
+Build-Depends: cmake (>= 3.19~),
+               debhelper-compat (= 13),
                dh-sequence-kf6,
-               cmake (>= 3.19~),
                extra-cmake-modules (>= 6.0.0~),
                gettext,
-               kdevelop-dev (>= 4:24.12.3~),
+               kdevelop-dev (>= 4:25.08.0~),
                libkf6config-dev (>= 6.0.0~),
                libkf6coreaddons-dev (>= 6.0.0~),
                libkf6i18n-dev (>= 6.0.0~),
@@ -19,20 +20,20 @@ Build-Depends: debhelper-compat (= 13),
                libkf6threadweaver-dev (>= 6.0.0~),
                libkf6widgetsaddons-dev (>= 6.0.0~),
                libkf6xmlgui-dev (>= 6.0.0~),
-               libpython3.13-dev,
-               python3.13:any,
+               libpython3-dev,
+               python3,
                qt6-5compat-dev (>= 6.5.0~),
                qt6-base-dev (>= 6.5.0~),
 Standards-Version: 4.7.2
 Rules-Requires-Root: no
 Homepage: https://www.kdevelop.org/
-Vcs-Browser: https://salsa.debian.org/qt-kde-team/kde/kdevelop-python
-Vcs-Git: https://salsa.debian.org/qt-kde-team/kde/kdevelop-python.git
+Vcs-Browser: https://code.launchpad.net/~kubuntu-packagers/kubuntu-packaging/+git/kdev-python
+Vcs-Git: https://git.launchpad.net/~kubuntu-packagers/kubuntu-packaging/+git/kdev-python
 
 Package: kdevelop-python
-Architecture: any
+Architecture: amd64 arm64 armhf
 Depends: kdevelop-python-data (>= ${source:Version}),
-         python3.13,
+         python3,
          ${misc:Depends},
          ${shlibs:Depends},
 Recommends: kdevelop, pycodestyle, python3-autopep8,
diff -pruN 24.12.3-1/debian/rules 25.08.0-0ubuntu1/debian/rules
--- 24.12.3-1/debian/rules	2025-03-03 06:16:43.000000000 +0000
+++ 25.08.0-0ubuntu1/debian/rules	2025-08-14 10:51:54.000000000 +0000
@@ -3,7 +3,7 @@
 export DEB_BUILD_MAINT_OPTIONS = hardening=+all
 
 # from kdevelop
-export KDEV_PLUGIN_VERSION=61
+export KDEV_PLUGIN_VERSION=63
 
 %:
 	dh $@
diff -pruN 24.12.3-1/debugger/debugjob.cpp 25.08.0-0ubuntu1/debugger/debugjob.cpp
--- 24.12.3-1/debugger/debugjob.cpp	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/debugger/debugjob.cpp	2025-07-31 22:47:59.000000000 +0000
@@ -5,18 +5,17 @@
 */
 
 #include "debugjob.h"
-
-
+#include "debugsession.h"
 
 #include <interfaces/idebugcontroller.h>
 #include <interfaces/icore.h>
 #include <interfaces/iplugincontroller.h>
+#include <outputview/outputmodel.h>
 
 #include <sublime/view.h>
 #include <util/processlinemaker.h>
 
 #include <QDebug>
-#include <QStandardPaths>
 #include "debuggerdebug.h"
 
 namespace Python {
@@ -24,55 +23,27 @@ namespace Python {
 
 void DebugJob::start()
 {
-    QStringList program;
-    QString debuggerUrl = QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("kdevpythonsupport/debugger"), QStandardPaths::LocateDirectory) + QStringLiteral("/kdevpdb.py");
-    program << m_interpreter << QStringLiteral("-u") << debuggerUrl << m_scriptUrl.toLocalFile() << m_args;
     // Inject environment
-    m_session = new DebugSession(program, m_workingDirectory, m_envProfileName);
-    
+    m_session = new DebugSession();
+
     setStandardToolView(KDevelop::IOutputView::DebugView);
     setBehaviours(KDevelop::IOutputView::Behaviours(KDevelop::IOutputView::AllowUserClose) | KDevelop::IOutputView::AutoScroll);
     OutputModel* pyOutputModel = new KDevelop::OutputModel();
     pyOutputModel->setFilteringStrategy(OutputModel::ScriptErrorFilter);
     setModel(pyOutputModel);
-    setTitle(m_interpreter + m_scriptUrl.toLocalFile());
-
-    setModel(new KDevelop::OutputModel(nullptr));
 
     startOutput();
-    
-    qCDebug(KDEV_PYTHON_DEBUGGER) << "connecting standardOutputReceived";
-    connect(m_session, &DebugSession::realDataReceived, this, &DebugJob::standardOutputReceived);
-    connect(m_session, &DebugSession::stderrReceived, this, &DebugJob::standardErrorReceived);
-    connect(m_session, &KDevelop::IDebugSession::finished, this, &DebugJob::sessionFinished);
-    KDevelop::ICore::self()->debugController()->addSession(m_session);
-    m_session->start();
-    qCDebug(KDEV_PYTHON_DEBUGGER) << "starting program:" << program;
-}
-
-void DebugJob::sessionFinished()
-{
-    emitResult();
-}
 
-void DebugJob::standardErrorReceived(QStringList lines)
-{
-    if ( OutputModel* m = outputModel() ) {
-        m->appendLines(lines);
-    }
-}
-
-void DebugJob::standardOutputReceived(QStringList lines)
-{
-    qCDebug(KDEV_PYTHON_DEBUGGER) << "standard output received:" << lines << outputModel();
-    if ( OutputModel* m = outputModel() ) {
-        m->appendLines(lines);
-    }
-}
-
-OutputModel* DebugJob::outputModel()
-{
-    return dynamic_cast<OutputModel*>(model());
+    qCDebug(KDEV_PYTHON_DEBUGGER) << "connecting DebugSession to OutputModel";
+    connect(m_session, &DebugSession::realDataReceived, pyOutputModel, &OutputModel::appendLines);
+    connect(m_session, &DebugSession::stderrReceived, pyOutputModel, &OutputModel::appendLines);
+    connect(m_session, &DebugSession::stateChanged, this, [this](KDevelop::IDebugSession::DebuggerState state) {
+        if (state == KDevelop::IDebugSession::EndedState) {
+            emitResult();
+        }
+    });
+    KDevelop::ICore::self()->debugController()->addSession(m_session);
+    m_session->start(m_data);
 }
 
 bool DebugJob::doKill()
@@ -82,9 +53,10 @@ bool DebugJob::doKill()
     return true;
 }
 
-DebugJob::DebugJob()
+DebugJob::DebugJob(const StartupInfo& info)
+    : m_data(info)
 {
-
+    setCapabilities(Killable);
 }
 
 DebugJob::~DebugJob()
diff -pruN 24.12.3-1/debugger/debugjob.h 25.08.0-0ubuntu1/debugger/debugjob.h
--- 24.12.3-1/debugger/debugjob.h	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/debugger/debugjob.h	2025-07-31 22:47:59.000000000 +0000
@@ -8,16 +8,17 @@
 #define PDBDEBUGJOB_H
 
 #include <outputview/outputjob.h>
-#include <outputview/outputmodel.h>
-#include "debugsession.h"
+#include "startupinfo.h"
 
 namespace Python {
 
+class DebugSession;
+
 class DebugJob : public KDevelop::OutputJob
 {
 Q_OBJECT
 public:
-    DebugJob();
+    explicit DebugJob(const StartupInfo& info);
     ~DebugJob() override;
     
     /**
@@ -25,22 +26,10 @@ public:
      **/
     void start() override;
     bool doKill() override;
-    
-    QUrl m_scriptUrl;
-    QString m_interpreter;
-    QStringList m_args;
-    QUrl m_workingDirectory;
-    QString m_envProfileName;
-
-private Q_SLOTS:
-    void standardOutputReceived(QStringList lines);
-    void standardErrorReceived(QStringList lines);
 
 private:
-    OutputModel* outputModel();
+    const StartupInfo m_data;
     DebugSession* m_session;
-public Q_SLOTS:
-    void sessionFinished();
 };
 
 }
diff -pruN 24.12.3-1/debugger/debugsession.cpp 25.08.0-0ubuntu1/debugger/debugsession.cpp
--- 24.12.3-1/debugger/debugsession.cpp	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/debugger/debugsession.cpp	2025-07-31 22:47:59.000000000 +0000
@@ -13,17 +13,16 @@
 #include <debugger/framestack/framestackmodel.h>
 #include <interfaces/icore.h>
 #include <interfaces/idocumentcontroller.h>
-#include <util/environmentprofilelist.h>
 
 #include "debugsession.h"
+#include "breakpointcontroller.h"
 #include "pdbframestackmodel.h"
+#include "startupinfo.h"
 #include "variablecontroller.h"
 #include "variable.h"
-#include "breakpointcontroller.h"
 
 #include <QDebug>
 #include <QRegularExpression>
-#include <QStandardPaths>
 
 #include "debuggerdebug.h"
 
@@ -44,19 +43,15 @@ using namespace KDevelop;
 
 namespace Python {
 
-DebugSession::DebugSession(QStringList program, const QUrl &workingDirectory,
-    const QString& envProfileName) :
-    IDebugSession()
+DebugSession::DebugSession()
+    : IDebugSession()
     , m_breakpointController(nullptr)
     , m_variableController(nullptr)
     , m_frameStackModel(nullptr)
-    , m_workingDirectory(workingDirectory)
-    , m_envProfileName(envProfileName)
     , m_nextNotifyMethod(nullptr)
     , m_inDebuggerData(0)
 {
     qCDebug(KDEV_PYTHON_DEBUGGER) << "creating debug session";
-    m_program = program;
     m_breakpointController = new Python::BreakpointController(this);
     m_variableController = new VariableController(this);
     m_frameStackModel = new PdbFrameStackModel(this);
@@ -77,33 +72,27 @@ IFrameStackModel* DebugSession::frameSta
     return m_frameStackModel;
 }
 
-void DebugSession::start()
+void DebugSession::start(const StartupInfo& info)
 {
     setState(StartingState);
     m_debuggerProcess = new KProcess(this);
-    m_debuggerProcess->setProgram(m_program);
+    *m_debuggerProcess << info.interpreter << QStringLiteral("-u") << info.debuggerPath << info.scriptPath << info.args;
     m_debuggerProcess->setOutputChannelMode(KProcess::SeparateChannels);
     m_debuggerProcess->blockSignals(true);
-    m_debuggerProcess->setWorkingDirectory(m_workingDirectory.path());
-
-    const KDevelop::EnvironmentProfileList environmentProfiles(KSharedConfig::openConfig());
-    const auto environment = environmentProfiles.variables(m_envProfileName);
-
-    QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
-    for(auto i = environment.cbegin(); i != environment.cend(); i++ )
-    {
-        env.insert(i.key(), i.value());
-    }
-    m_debuggerProcess->setProcessEnvironment(env);
+    m_debuggerProcess->setWorkingDirectory(info.workingDirectory.path());
+    m_debuggerProcess->setProcessEnvironment(info.environment);
 
     connect(m_debuggerProcess, &QProcess::readyReadStandardOutput, this, &DebugSession::dataAvailable);
     connect(m_debuggerProcess, SIGNAL(finished(int)), this, SLOT(debuggerQuit(int)));
     connect(this, &DebugSession::debuggerReady, this, &DebugSession::checkCommandQueue);
     connect(this, &DebugSession::commandAdded, this, &DebugSession::checkCommandQueue);
+
+    qCDebug(KDEV_PYTHON_DEBUGGER) << "starting program:" << m_debuggerProcess->program();
+
     m_debuggerProcess->start();
     m_debuggerProcess->waitForStarted();
-    auto dir = QStandardPaths::locate(QStandardPaths::GenericDataLocation,
-                                      QStringLiteral("kdevpythonsupport/debugger/"), QStandardPaths::LocateDirectory);
+
+    const auto dir = info.debuggerPath.section(QLatin1Char('/'), 0, -2, QString::SectionIncludeTrailingSep);
     InternalPdbCommand* path = new InternalPdbCommand(nullptr, nullptr,
         QStringLiteral("import sys; sys.path.append('") + dir + QStringLiteral("')\n"));
     InternalPdbCommand* cmd = new InternalPdbCommand(nullptr, nullptr, QStringLiteral("import __kdevpython_debugger_utils\n"));
@@ -277,7 +266,6 @@ void DebugSession::setState(DebuggerStat
     m_state = state;
     if ( m_state == EndedState ) {
         raiseEvent(debugger_exited);
-        Q_EMIT finished();
     }
     else if ( m_state == ActiveState || m_state == StartingState || m_state == StoppingState ) {
         raiseEvent(debugger_busy);
diff -pruN 24.12.3-1/debugger/debugsession.h 25.08.0-0ubuntu1/debugger/debugsession.h
--- 24.12.3-1/debugger/debugsession.h	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/debugger/debugsession.h	2025-07-31 22:47:59.000000000 +0000
@@ -24,13 +24,13 @@ using namespace KDevelop;
 namespace Python {
 
 struct PdbCommand;
-    
+struct StartupInfo;
+
 class DebugSession : public KDevelop::IDebugSession
 {
     Q_OBJECT
 public:
-    DebugSession(QStringList program, const QUrl& workingDirectory,
-                 const QString& envProfileName);
+    DebugSession();
     ~DebugSession() override;
 
     IBreakpointController* breakpointController() const override;
@@ -39,8 +39,8 @@ public:
     /**
      * @brief Start the debugger.
      **/
-    void start();
-    
+    void start(const StartupInfo& info);
+
     /**
      * @brief Adds a command to the queue.
      * Commands are processed in the same order they're added.
@@ -208,12 +208,10 @@ private:
     IVariableController* m_variableController;
     IFrameStackModel* m_frameStackModel;
     KProcess* m_debuggerProcess;
-    IDebugSession::DebuggerState m_state;
+    DebuggerState m_state = DebuggerState::NotStartedState;
     QByteArray m_buffer;
-    QStringList m_program;
     QList<PdbCommand*> m_commandQueue;
-    const QUrl& m_workingDirectory;
-    const QString m_envProfileName;
+
 private:
     /// objects to notify next
     QPointer<QObject> m_nextNotifyObject;
diff -pruN 24.12.3-1/debugger/kdevpdb.json 25.08.0-0ubuntu1/debugger/kdevpdb.json
--- 24.12.3-1/debugger/kdevpdb.json	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/debugger/kdevpdb.json	2025-07-31 22:47:59.000000000 +0000
@@ -18,6 +18,7 @@
                 "Name[fr]": "Sven Brauch",
                 "Name[gl]": "Sven Brauch",
                 "Name[he]": "סוון בראוך",
+                "Name[hi]": "स्वेन कस्टम",
                 "Name[ia]": "Sven Brauch",
                 "Name[it]": "Sven Brauch",
                 "Name[ka]": "Sven Brauch",
@@ -28,6 +29,7 @@
                 "Name[pt]": "Sven Brauch",
                 "Name[pt_BR]": "Sven Brauch",
                 "Name[ru]": "Sven Brauch",
+                "Name[sa]": "स्वेन् प्रथा",
                 "Name[sk]": "Sven Brauch",
                 "Name[sl]": "Sven Brauch",
                 "Name[sv]": "Sven Brauch",
@@ -54,6 +56,7 @@
         "Description[fr]": "Ce module externe fournit une interface pour le débogueur Python (pdb)",
         "Description[gl]": "Este complemento fornece unha interface para PDB.",
         "Description[he]": "התוסף מספק ממשק חזותי ל־PDB",
+        "Description[hi]": "यह प्लगइन PDB के लिए फ्रंटएंड प्रदान करता है",
         "Description[it]": "Questa estensione fornisce un'interfaccia per PDB",
         "Description[ka]": "ეს დამატება PDB-ის წინაბოლოს წარმოადგენს",
         "Description[ko]": "이 플러그인은 PDB 프론트엔드를 제공합니다",
@@ -63,10 +66,11 @@
         "Description[pt]": "Este 'plugin' oferece uma interface para o PDB",
         "Description[pt_BR]": "Este plugin fornece uma interface para o PDB",
         "Description[ru]": "Этот модуль предоставляет интерфейс к PDB",
+        "Description[sa]": "एतत् प्लगिन् PDB कृते अग्रभागं प्रदाति",
         "Description[sk]": "Tento plugin poskytuje rozhranie pre PDB",
         "Description[sl]": "Ta vstavek ponuja začelje za PDB",
         "Description[sv]": "Insticksprogrammet tillhandahåller ett gränssnitt för PDB",
-        "Description[tr]": "Bu eklenti PDB için bir ön uç sağlar",
+        "Description[tr]": "Bu eklenti, PDB için bir ön uç sağlar",
         "Description[uk]": "Цей додаток є графічною оболонкою до PDB",
         "Description[x-test]": "xxThis plugin provides a frontend for PDBxx",
         "Description[zh_CN]": "插件提供了 PDB 前端",
@@ -88,6 +92,7 @@
         "Name[fr]": "Prise en charge du débogueur Python (pdb)",
         "Name[gl]": "Compatibilidade co depurador de Python (PDB)",
         "Name[he]": "תמיכה במנפה שגיאות של Python‏ (PDB)",
+        "Name[hi]": "पायथन डीबगर (PDB) समर्थन",
         "Name[it]": "Supporto al debugger di Python (PDB)",
         "Name[ka]": "Python-ს გამმართველის (PDB) მხარდაჭერა",
         "Name[ko]": "파이썬 디버거(PDB) 지원",
@@ -97,10 +102,11 @@
         "Name[pt]": "Suporte para o Depurador de Python (PDB)",
         "Name[pt_BR]": "Suporte ao Python Debugger (PDB)",
         "Name[ru]": "Поддержка отладчика Python (PDB)",
+        "Name[sa]": "पायथन् डिबगर (PDB) समर्थनम्",
         "Name[sk]": "Podpora Python Debugger-a (PDB)",
         "Name[sl]": "Podpora razhroščevalniku za Python (PDB)",
         "Name[sv]": "Stöd för Python-avlusare (PDB)",
-        "Name[tr]": "Python Hata Ayıklayıcı (PDB) desteği",
+        "Name[tr]": "Python Hata Ayıklayıcısı (PDB) desteği",
         "Name[uk]": "Підтримка засобу діагностики Python (PDB)",
         "Name[x-test]": "xxPython Debugger (PDB) supportxx",
         "Name[zh_CN]": "Python 调试器 (PDB) 支持",
diff -pruN 24.12.3-1/debugger/pdblauncher.cpp 25.08.0-0ubuntu1/debugger/pdblauncher.cpp
--- 24.12.3-1/debugger/pdblauncher.cpp	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/debugger/pdblauncher.cpp	2025-07-31 22:47:59.000000000 +0000
@@ -8,12 +8,10 @@
 #include <interfaces/idocumentcontroller.h>
 #include "debugjob.h"
 
-#include <util/executecompositejob.h>
 #include <executescript/iexecutescriptplugin.h>
 #include <interfaces/launchconfigurationpage.h>
 #include <interfaces/ilaunchconfiguration.h>
 #include <interfaces/iplugincontroller.h>
-#include <interfaces/iruncontroller.h>
 #include <interfaces/icore.h>
 #include <interfaces/iuicontroller.h>
 
@@ -22,6 +20,7 @@
 #include <KParts/MainWindow>
 #include <KConfigGroup>
 #include <QFileInfo>
+#include <QStandardPaths>
 
 #include <QDebug>
 #include "debuggerdebug.h"
@@ -63,19 +62,28 @@ KJob* PdbLauncher::start(const QString&
                                       ->pluginForExtension(QStringLiteral("org.kdevelop.IExecuteScriptPlugin"))->extension<IExecuteScriptPlugin>();
         Q_ASSERT(iface);
         QString err;
-        QString interpreter = iface->interpreter(cfg, err);
-        
+        StartupInfo data;
+
+        data.interpreter = iface->interpreter(cfg, err);
+        // TODO: replace this minimal safety check with proper ILaunchConfiguration
+        //       error handling like that in ScriptAppJob from the executescript plugin
+        if (data.interpreter.empty()) {
+            return nullptr;
+        }
+
         // check the interpreter
         QProcess p;
         p.setProcessChannelMode(QProcess::MergedChannels);
-        p.start(interpreter, QStringList() << QStringLiteral("--version"));
+        // Do not pass the interpreter command line arguments to the interpreter version check command,
+        // because the arguments are more likely to break the check than to improve version detection accuracy.
+        p.start(data.interpreter.constFirst(), {QStringLiteral("--version")});
         p.waitForFinished(500);
         QByteArray version = p.readAll();
         qCDebug(KDEV_PYTHON_DEBUGGER) << "interpreter version:" << version;
         if ( ! version.startsWith("Python 3.") ) {
-            KMessageBox::error(ICore::self()->uiController()->activeMainWindow(),
-                            i18n("Sorry, debugging is only supported for Python 3.x applications."),
-                            i18n("Unsupported interpreter"));
+            KMessageBox::error(KDevelop::ICore::self()->uiController()->activeMainWindow(),
+                               i18n("Sorry, debugging is only supported for Python 3.x applications."),
+                               i18n("Unsupported interpreter"));
             return nullptr;
         }
 
@@ -91,18 +99,23 @@ KJob* PdbLauncher::start(const QString&
         else {
             scriptUrl = iface->script(cfg, err);
         }
+        data.scriptPath = scriptUrl.toLocalFile();
+
+        data.workingDirectory = iface->workingDirectory(cfg);
+        if (!data.workingDirectory.isValid() || data.workingDirectory.isEmpty()) {
+            data.workingDirectory = QUrl::fromLocalFile(QFileInfo{data.scriptPath}.absolutePath());
+        }
 
-        auto wd = iface->workingDirectory(cfg);
-        if( !wd.isValid() || wd.isEmpty() )
-        {
-            wd = QUrl::fromLocalFile( QFileInfo( scriptUrl.toLocalFile() ).absolutePath() );
+        // Locate the kdevpdb.py debugger script.
+        data.debuggerPath =
+            QStandardPaths::locate(QStandardPaths::GenericDataLocation,
+                                   QStringLiteral("kdevpythonsupport/debugger/kdevpdb.py"), QStandardPaths::LocateFile);
+        if (data.debuggerPath.isEmpty()) {
+            qCDebug(KDEV_PYTHON_DEBUGGER) << "failed to locate kdevpdb.py debugger script";
+            return nullptr;
         }
 
-        DebugJob* job = new DebugJob();
-        job->m_scriptUrl = scriptUrl;
-        job->m_interpreter = interpreter;
-        job->m_args = iface->arguments(cfg, err);
-        job->m_workingDirectory = wd;
+        data.args = iface->arguments(cfg, err);
 
         const KDevelop::EnvironmentProfileList environmentProfiles(KSharedConfig::openConfig());
         QString envProfileName = iface->environmentProfileName(cfg);
@@ -113,11 +126,18 @@ KJob* PdbLauncher::start(const QString&
                                        ". Using default environment profile.";
             envProfileName = environmentProfiles.defaultProfileName();
         }
-        job->m_envProfileName = envProfileName;
 
-        QList<KJob*> l;
-        l << job;
-        return new KDevelop::ExecuteCompositeJob( KDevelop::ICore::self()->runController(), l );
+        const auto environment = environmentProfiles.variables(envProfileName);
+        data.environment = QProcessEnvironment::systemEnvironment();
+        for (auto i = environment.cbegin(); i != environment.cend(); i++) {
+            data.environment.insert(i.key(), i.value());
+        }
+
+        DebugJob* job = new DebugJob(data);
+        const auto scriptFileName = data.scriptPath.section(QLatin1Char{'/'}, -1);
+        job->setObjectName(scriptFileName);
+
+        return job;
     }
     qCDebug(KDEV_PYTHON_DEBUGGER) << "unknown launch mode";
     return nullptr;
diff -pruN 24.12.3-1/debugger/startupinfo.h 25.08.0-0ubuntu1/debugger/startupinfo.h
--- 24.12.3-1/debugger/startupinfo.h	1970-01-01 00:00:00.000000000 +0000
+++ 25.08.0-0ubuntu1/debugger/startupinfo.h	2025-07-31 22:47:59.000000000 +0000
@@ -0,0 +1,28 @@
+/*
+    SPDX-FileCopyrightText: 2025 Jarmo Tiitto <jarmo.tiito@gmail.com>
+
+    SPDX-License-Identifier: GPL-2.0-or-later
+*/
+
+#ifndef STARTUPINFOSTRUCT_H
+#define STARTUPINFOSTRUCT_H
+
+#include <QProcessEnvironment>
+#include <QString>
+#include <QStringList>
+#include <QUrl>
+
+namespace Python {
+
+struct StartupInfo
+{
+    QString scriptPath;
+    QString debuggerPath;
+    QStringList interpreter;
+    QStringList args;
+    QUrl workingDirectory;
+    QProcessEnvironment environment;
+};
+
+}
+#endif
diff -pruN 24.12.3-1/kdevpythonsupport.json 25.08.0-0ubuntu1/kdevpythonsupport.json
--- 24.12.3-1/kdevpythonsupport.json	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/kdevpythonsupport.json	2025-07-31 22:47:59.000000000 +0000
@@ -18,6 +18,7 @@
                 "Name[fr]": "Sven Brauch",
                 "Name[gl]": "Sven Brauch",
                 "Name[he]": "סוון בראוך",
+                "Name[hi]": "स्वेन कस्टम",
                 "Name[ia]": "Sven Brauch",
                 "Name[it]": "Sven Brauch",
                 "Name[ka]": "Sven Brauch",
@@ -28,6 +29,7 @@
                 "Name[pt]": "Sven Brauch",
                 "Name[pt_BR]": "Sven Brauch",
                 "Name[ru]": "Sven Brauch",
+                "Name[sa]": "स्वेन् प्रथा",
                 "Name[sk]": "Sven Brauch",
                 "Name[sl]": "Sven Brauch",
                 "Name[sv]": "Sven Brauch",
@@ -54,6 +56,7 @@
         "Description[fr]": "Prise en charge du langage Python",
         "Description[gl]": "Compatibilidade coa linguaxe Python.",
         "Description[he]": "תמיכה בשפת Python",
+        "Description[hi]": "पायथन भाषा समर्थन",
         "Description[it]": "Supporto per il linguaggio Python",
         "Description[ka]": "Python ენის მხარდაჭერა",
         "Description[ko]": "파이썬 언어 지원",
@@ -63,6 +66,7 @@
         "Description[pt]": "Suporte à Linguagem Python",
         "Description[pt_BR]": "Suporte à linguagem Python",
         "Description[ru]": "Поддержка языка программирования Python",
+        "Description[sa]": "पायथन भाषा समर्थन",
         "Description[sk]": "Podpora jazyka Python",
         "Description[sl]": "Podpora jeziku Python",
         "Description[sv]": "Stöd för språket Python",
@@ -87,6 +91,7 @@
         "Name[fr]": "Prise en charge de Python",
         "Name[gl]": "Compatibilidade con Python",
         "Name[he]": "תמיכה ב־Python",
+        "Name[hi]": "पायथन समर्थन",
         "Name[it]": "Supporto per Python",
         "Name[ka]": "Python -ის მხარდაჭერა",
         "Name[ko]": "파이썬 지원",
@@ -96,6 +101,7 @@
         "Name[pt]": "Suporte para Python",
         "Name[pt_BR]": "Suporte à Python",
         "Name[ru]": "Поддержка Python",
+        "Name[sa]": "पायथन समर्थन",
         "Name[sk]": "Podpora Pythonu",
         "Name[sl]": "Podpora Pythonu",
         "Name[sv]": "Python-stöd",
diff -pruN 24.12.3-1/org.kde.kdev-python.metainfo.xml 25.08.0-0ubuntu1/org.kde.kdev-python.metainfo.xml
--- 24.12.3-1/org.kde.kdev-python.metainfo.xml	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/org.kde.kdev-python.metainfo.xml	2025-07-31 22:47:59.000000000 +0000
@@ -19,6 +19,7 @@
   <name xml:lang="fr">Prise en charge de Python pour KDevelop</name>
   <name xml:lang="gl">Compatibilidade con Python para KDevelop</name>
   <name xml:lang="he">תמיכה של KDevelop ב־Python</name>
+  <name xml:lang="hi">KDevelop पायथन समर्थन</name>
   <name xml:lang="ia">Supporto de KDevelop per Python</name>
   <name xml:lang="it">Supporto Python per KDevelop</name>
   <name xml:lang="ka">KDevelop Python მხარდაჭერა</name>
@@ -29,6 +30,7 @@
   <name xml:lang="pt">Suporte para Python do KDevelop</name>
   <name xml:lang="pt-BR">Suporte à Python do KDevelop</name>
   <name xml:lang="ru">Поддержка Python в KDevelop</name>
+  <name xml:lang="sa">KDevelop पायथन समर्थनम्</name>
   <name xml:lang="sk">Podpora jazyka Python pre KDevelop</name>
   <name xml:lang="sl">Podpora Pythonu za KDevelop</name>
   <name xml:lang="sv">KDevelop Python-stöd</name>
@@ -50,6 +52,7 @@
   <summary xml:lang="fr">Prise en charge du langage Python pour KDevelop</summary>
   <summary xml:lang="gl">Compatibilidade coa linguaxe Python para KDevelop</summary>
   <summary xml:lang="he">תמיכה בשפת Python ב־KDevelop</summary>
+  <summary xml:lang="hi">KDevelop के लिए पायथन भाषा समर्थन</summary>
   <summary xml:lang="ia">Supporto de linguage Python per KDevelop</summary>
   <summary xml:lang="it">Supporto per il linguaggio Python in KDevelop</summary>
   <summary xml:lang="ka">Python ენის მხარდაჭერა KDevelop-სთვის</summary>
@@ -60,10 +63,11 @@
   <summary xml:lang="pt">Suporte para a linguagem Python no KDevelop</summary>
   <summary xml:lang="pt-BR">Suporta à linguagem Python para o KDevelop</summary>
   <summary xml:lang="ru">Поддержка языка программирования Python в KDevelop</summary>
+  <summary xml:lang="sa">KDevelop कृते पायथन् भाषासमर्थनम्</summary>
   <summary xml:lang="sk">Podpora jazyka Python pre KDevelop</summary>
   <summary xml:lang="sl">Podpora jeziku Python za KDevelop</summary>
   <summary xml:lang="sv">Stöd för språket Python i KDevelop</summary>
-  <summary xml:lang="tr">K Geliştir için Python dil desteği</summary>
+  <summary xml:lang="tr">K Geliştir için Python dili desteği</summary>
   <summary xml:lang="uk">Підтримка мови Python у KDevelop</summary>
   <summary xml:lang="x-test">xxPython language support for KDevelopxx</summary>
   <summary xml:lang="zh-CN">KDevelop 的 Python 语言支持</summary>
@@ -84,6 +88,7 @@
     <p xml:lang="fr">Ajoute la prise en charge de Python à KDevelop. Les fonctionnalités incluent la coloration syntaxique, le complètement du code, la prise en charge du système de compilation, les liens avec la documentation et la prise en charge du débogage.</p>
     <p xml:lang="gl">Engade compatibilidade con Python a KDevelop. Inclúe engadir integración con KDevelop para realce de código, completado de código, compatibilidade co sistema de construción, ligazóns á documentación e funcionalidade de depuración.</p>
     <p xml:lang="he">הוספת תמיכה ב־Python ל־KDevelop. כולל הוספת שילוב עם הדגשת קוד, השלמת קוד, תמיכה במערכת בנייה, קישור לתיעוד וניפוי שגיאות.</p>
+    <p xml:lang="hi">KDevelop में पायथन समर्थन जोड़ता है। इसमें कोड हाइलाइटिंग, कोड पूर्णता, बिल्ड सिस्टम समर्थन, डॉक्यूमेंटेशन लिंकिंग और डिबगिंग समर्थन के साथ एकीकरण जोड़ना शामिल है।</p>
     <p xml:lang="it">Aggiunge il supporto a Python in KDevelop. Include l'integrazione con l'evidenziazione del codice, il completamente del codice, il supporto per il sistema di compilazione, il collegamento con la documentazione ed il supporto per il debugging.</p>
     <p xml:lang="ka">KDevelop-სთვის Python-ის მხარდაჭერის დამატება. ემატება კოდის გამოკვეთა, კოდის დასრულება, აგების სისტემის მხარდაჭერა, აწყობისა და გამართვის დოკუმენტაცია.</p>
     <p xml:lang="ko">KDevelop에 Python 지원을 추가합니다. 코드 구문 강조, 자동 완성, 빌드 시스템 지원, 문서 링크 및 디버그 지원 통합이 들어 있습니다.</p>
@@ -93,10 +98,11 @@
     <p xml:lang="pt">Adiciona o suporte para Python ao KDevelop. Inclui a adição da integração com o realce de código, completação de código, suporte para sistemas de compilação, referências à documentação e suporte para a depuração.</p>
     <p xml:lang="pt-BR">Adiciona suporte para Python ao KDevelop. Inclui a adição da integração com o realce de código, completação de código, suporte para sistemas de compilação, referências à documentação e suporte para depuração.</p>
     <p xml:lang="ru">Добавляет поддержку Python в KDevelop. Включена интеграция подсветки кода и автоматического дополнения кода, поддержка систем сборки, поддержка ссылок на документацию и отладки.</p>
+    <p xml:lang="sa">KDevelop मध्ये Python समर्थनं योजयति । कोड् हाइलाइटिङ्ग्, कोड् समाप्तिः, बिल्ड सिस्टम् समर्थनम्, दस्तावेजीकरण लिङ्किङ्ग्, डिबगिंग् समर्थनं च सह एकीकरणं योजयितुं समाविष्टम् अस्ति ।</p>
     <p xml:lang="sk">Pridá podporu Pythonu do KDevelopu. Zahŕňa pridanie integrácie so zvýrazňovaním kódu, ukončovanie kódu, podpora systému zostavení, linkovanie dokumentácie a podporu ladenia.</p>
     <p xml:lang="sl">Programu KDevelop doda podporo za Python. Vključuje dodatek integracije z označevanjem kode, dokončanje kode, gradnje podpore sistema, povezovanje dokumentacije in podporo za odpravljanje napak</p>
     <p xml:lang="sv">Lägger till stöd för Python i KDevelop. Inkluderar tillägg av integrering med kodfärgläggning, kodkomplettering, byggsystemstöd, dokumentationslänkning och avlusningsstöd.</p>
-    <p xml:lang="tr">K Geliştir'e Python desteği ekler. Kod vurgulaması, kod tamamlama, yapı sistemi desteği, belgelendirme bağlaması ve hata ayıklama desteği bütünleştirmesi içerir.</p>
+    <p xml:lang="tr">K Geliştir’e Python desteği ekler. Kod vurgulaması, kod tamamlama, yapı sistemi desteği, belgelendirme bağlaması ve hata ayıklama desteği bütünleştirmesi içerir.</p>
     <p xml:lang="uk">Додає підтримку Python до KDevelop. Включено інтеграцію із засобами підсвічування коду, автоматичне доповнення коду, підтримку систем збирання, інтеграцію посилань на документацію та засобів діагностики.</p>
     <p xml:lang="x-test">xxAdds Python support to KDevelop. Includes adding integration with code highlighting, code completion, build system support, documentation linking and debugging support.xx</p>
     <p xml:lang="zh-CN">向 KDevelop 添加 Python 支持。包括代码高亮、代码完成、构建系统支持、文档链接和调试支持的集成。</p>
@@ -120,6 +126,11 @@
     <category>IDE</category>
   </categories>
   <releases>
+    <release version="6.0.250800" date="2025-08-14"/>
+    <release version="6.0.250403" date="2025-07-03"/>
+    <release version="6.0.250402" date="2025-06-05"/>
+    <release version="6.0.250401" date="2025-05-08"/>
+    <release version="6.0.250400" date="2025-04-17"/>
     <release version="6.0.241203" date="2025-03-06"/>
     <release version="6.0.241202" date="2025-02-06"/>
     <release version="6.0.241201" date="2025-01-09"/>
diff -pruN 24.12.3-1/po/bs/kdevpython.po 25.08.0-0ubuntu1/po/bs/kdevpython.po
--- 24.12.3-1/po/bs/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/bs/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: desktop files\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2014-11-27 13:41+0000\n"
 "Last-Translator: Mirza Bulbulusic <mbulbulusic@gmail.com>\n"
 "Language-Team: bs <bs@kde.org>\n"
@@ -204,32 +204,32 @@ msgstr "Potrebni moduli:"
 msgid "A comma separated list of modules required for the type"
 msgstr "Zarez je odvojio listu modula potrebnih za ovaj tip"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "Program koji se debagira je aktivirao neobrađeni izuzetak."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Možete istražiti status programa nakon što je izašao."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr "Debager će tiho stati kada se pokrene naredna komanda."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Dodatak za traženje grešaka u Python programima koristeći pdb."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, fuzzy, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "Nažalost, praćenje grešaka je podržano samo za Python 2.x aplikacije."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Nepodržan interpreter"
diff -pruN 24.12.3-1/po/ca/kdevpython.po 25.08.0-0ubuntu1/po/ca/kdevpython.po
--- 24.12.3-1/po/ca/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/ca/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdev-python\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2024-10-17 15:12+0200\n"
 "Last-Translator: Josep M. Ferrer <txemaq@gmail.com>\n"
 "Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
@@ -207,33 +207,33 @@ msgstr "Mòduls requerits:"
 msgid "A comma separated list of modules required for the type"
 msgstr "Una llista separada per comes dels mòduls requerits pel tipus"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "El programa que s'està depurant ha generat una excepció no controlada."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Ara podeu inspeccionar l'estat del programa després que finalitzi."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr "El depurador s'aturarà en silenci quan s'activi la següent ordre."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Un connector per a depurar aplicacions de Python amb «pdb»."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 "Perdoneu, la depuració només és compatible amb les aplicacions de Python 3.x."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Intèrpret no admès"
diff -pruN 24.12.3-1/po/ca@valencia/kdevpython.po 25.08.0-0ubuntu1/po/ca@valencia/kdevpython.po
--- 24.12.3-1/po/ca@valencia/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/ca@valencia/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdev-python\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2024-10-17 15:12+0200\n"
 "Last-Translator: Josep M. Ferrer <txemaq@gmail.com>\n"
 "Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
@@ -207,33 +207,33 @@ msgstr "Mòduls requerits:"
 msgid "A comma separated list of modules required for the type"
 msgstr "Una llista separada per comes dels mòduls requerits pel tipus"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "El programa que s'està depurant ha generat una excepció no controlada."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Ara podeu inspeccionar l'estat del programa després que finalitze."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr "El depurador es pararà en silenci quan s'active l'ordre següent."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Un connector per a depurar aplicacions de Python amb «pdb»."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 "Perdoneu, la depuració només és compatible amb les aplicacions de Python 3.x."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Intèrpret no admés"
diff -pruN 24.12.3-1/po/cs/kdevpython.po 25.08.0-0ubuntu1/po/cs/kdevpython.po
--- 24.12.3-1/po/cs/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/cs/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2017-08-03 13:58+0100\n"
 "Last-Translator: Vít Pelčák <vit@pelcak.org>\n"
 "Language-Team: Czech <kde-i18n-doc@kde.org>\n"
@@ -200,32 +200,32 @@ msgstr ""
 msgid "A comma separated list of modules required for the type"
 msgstr ""
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr ""
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr ""
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr ""
diff -pruN 24.12.3-1/po/da/kdevpython.po 25.08.0-0ubuntu1/po/da/kdevpython.po
--- 24.12.3-1/po/da/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/da/kdevpython.po	2025-07-31 22:47:59.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-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2014-02-23 14:14+0100\n"
 "Last-Translator: Martin Schlander <mschlander@opensuse.org>\n"
 "Language-Team: Danish <kde-i18n-doc@kde.org>\n"
@@ -201,33 +201,33 @@ msgstr "Påkrævede moduler:"
 msgid "A comma separated list of modules required for the type"
 msgstr "Kommasepareret liste over moduler der kræves af typen"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "Programmet der fejlsøges udsendte en undtagelse, som ikke blev fanget."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Du kan nu inspicere programmets status efter at det afsluttede."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr "Fejlsøgeren vil stoppe tavst når den næste kommando udløses."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Et plugin til at fejlsøge Python-programmer med pdb."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, fuzzy, kde-format
 #| msgid "Sorry, debugging is only supported for Python 2.x applications."
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "Beklager, fejlsøgning understøttes kun for programmer i Python 2.x"
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Ikke-understøttet fortolker"
diff -pruN 24.12.3-1/po/de/kdevpython.po 25.08.0-0ubuntu1/po/de/kdevpython.po
--- 24.12.3-1/po/de/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/de/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -4,7 +4,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2017-11-26 17:10+0100\n"
 "Last-Translator: Burkhard Lück <lueck@hube-lueck.de>\n"
 "Language-Team: German <kde-i18n-de@kde.org>\n"
@@ -17,12 +17,12 @@ msgstr ""
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
 msgid "Your names"
-msgstr "Frederik Schwarzer"
+msgstr "Deutsches KDE-Übersetzungsteam"
 
 #, kde-format
 msgctxt "EMAIL OF TRANSLATORS"
 msgid "Your emails"
-msgstr "schwarzer@kde.org"
+msgstr "kde-i18n-de@kde.org"
 
 #: codecompletion/context.cpp:115
 #, kde-format
@@ -200,39 +200,39 @@ msgid "A comma separated list of modules
 msgstr ""
 "Durch Komma getrennte Liste von Modulen, die für diesen Typ erforderlich sind"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr ""
 "Das im Debugger ausgeführte Programm hat eine nicht behandelte "
 "Ausnahmebedingung ausgelöst."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr ""
 "Sie können jetzt den Status des Programms nach den Beenden untersuchen."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 "Der Debugger wird ohne Benachrichtigung anhalten, wenn der nächste Befehl "
 "ausgelöst wird."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Ein Modul zur Fehlersuche in Python-Programmen mit pdb."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 "Leider wird die Fehlersuche nur für Programme mit der Python-Version 3.x "
 "unterstützt."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Nicht unterstützter Interpreter"
diff -pruN 24.12.3-1/po/en_GB/kdevpython.po 25.08.0-0ubuntu1/po/en_GB/kdevpython.po
--- 24.12.3-1/po/en_GB/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/en_GB/kdevpython.po	2025-07-31 22:47:59.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-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2024-10-18 17:20+0100\n"
 "Last-Translator: Steve Allewell <steve.allewell@gmail.com>\n"
 "Language-Team: British English\n"
@@ -201,32 +201,32 @@ msgstr "Required modules:"
 msgid "A comma separated list of modules required for the type"
 msgstr "A comma separated list of modules required for the type"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "The program being debugged raised an uncaught exception."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "You can now inspect the status of the program after it exited."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr "The debugger will silently stop when the next command is triggered."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "A plugin to debug Python applications with pdb."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "Sorry, debugging is only supported for Python 3.x applications."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Unsupported interpreter"
diff -pruN 24.12.3-1/po/eo/kdevpython.po 25.08.0-0ubuntu1/po/eo/kdevpython.po
--- 24.12.3-1/po/eo/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/eo/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2024-12-27 10:42+0100\n"
 "Last-Translator: Oliver Kellogg <olivermkellogg@gmail.com>\n"
 "Language-Team: esperanto <kde-i18n-eo@kde.org>\n"
@@ -203,32 +203,32 @@ msgstr "Bezonataj moduloj:"
 msgid "A comma separated list of modules required for the type"
 msgstr "Komo apartigita listo de moduloj necesaj por la tipo"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "La programo sencimigita levis nekaptitan escepton."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Vi nun povas inspekti la staton de la programo post kiam ĝi eliris."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr "La erarserĉilo silente ĉesos kiam la sekva komando estas ekigita."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Kromaĵo por sencimi Python-aplikaĵojn per pdb."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "Pardonu, sencimigado estas nur subtenata por Python 3.x-aplikoj."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Nesubtenata interpretisto"
diff -pruN 24.12.3-1/po/es/kdevpython.po 25.08.0-0ubuntu1/po/es/kdevpython.po
--- 24.12.3-1/po/es/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/es/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -1,13 +1,14 @@
-# Copyright (C) YEAR This_file_is_part_of_KDE
-# This file is distributed under the same license as the PACKAGE package.
+# Spanish translations for kdevpython.po package.
+# Copyright (C) 2013-2025 This file is copyright:
+# This file is distributed under the same license as the kdev-python package.
 #
-# SPDX-FileCopyrightText: 2013, 2014, 2015, 2016, 2017, 2024 Eloy Cuadra <ecuadra@eloihr.net>
+# SPDX-FileCopyrightText: 2013, 2014, 2015, 2016, 2017, 2024, 2025 Eloy Cuadra <ecuadra@eloihr.net>
 msgid ""
 msgstr ""
-"Project-Id-Version: \n"
+"Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
-"PO-Revision-Date: 2024-10-18 00:09+0200\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
+"PO-Revision-Date: 2025-05-13 21:29+0100\n"
 "Last-Translator: Eloy Cuadra <ecuadra@eloihr.net>\n"
 "Language-Team: Spanish <kde-l10n-es@kde.org>\n"
 "Language: es\n"
@@ -141,7 +142,7 @@ msgstr "Añadir «%1»"
 #: codegen/correctionfilegenerator.cpp:58
 #, kde-format
 msgid "Specify type for \"%1\"..."
-msgstr "Especifique el tipo para «%1»..."
+msgstr "Especifique el tipo para «%1»…"
 
 #: codegen/correctionfilegenerator.cpp:108
 #, kde-format
@@ -202,37 +203,37 @@ msgstr "Módulos requeridos:"
 msgid "A comma separated list of modules required for the type"
 msgstr "Una lista separada por comas de los módulos requeridos por el tipo"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr ""
 "El programa que está siendo depurado ha generado una excepción no "
 "contemplada."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Ya puede inspeccionar el estado del programa tras su salida."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 "El depurador se detendrá en silencio cuando se lance la siguiente orden."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Un complemento para depurar aplicaciones de Python con pdb."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 "Lo sentimos. La depuración solo está permitida para aplicaciones de Python 3."
 "x."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Intérprete no permitido"
@@ -247,7 +248,7 @@ msgstr ""
 #: docfilekcm/docfilemanagerwidget.cpp:51
 #, kde-format
 msgid "Generate..."
-msgstr "Generar..."
+msgstr "Generar…"
 
 #: docfilekcm/docfilemanagerwidget.cpp:53
 #, kde-format
@@ -277,7 +278,7 @@ msgstr "Editar la selección"
 #: docfilekcm/docfilemanagerwidget.cpp:70
 #, kde-format
 msgid "Search Paths..."
-msgstr "Rutas de búsqueda..."
+msgstr "Rutas de búsqueda…"
 
 #: docfilekcm/docfilemanagerwidget.cpp:101
 #, kde-format
@@ -434,7 +435,7 @@ msgstr "Documentación de Python"
 #: duchain/assistants/missingincludeassistant.cpp:48
 #, kde-format
 msgid "Generate documentation for module \"%1\"..."
-msgstr "Generar documentación para el módulo «%1»..."
+msgstr "Generar documentación para el módulo «%1»…"
 
 #: duchain/declarationbuilder.cpp:705
 #, kde-format
@@ -598,104 +599,3 @@ msgstr "Error del comprobador PEP8: %1"
 #, kde-format
 msgid "The PEP8 syntax checker does not seem to work correctly."
 msgstr "Parece que el comprobador de sintaxis PEP8 no funciona correctamente."
-
-#~ msgid ""
-#~ "First argument of __new__ method is not called cls, this is deprecated"
-#~ msgstr ""
-#~ "El primer argumento del método __new__ no se llama «cls», lo que está "
-#~ "desaconsejado"
-
-#~ msgid "%1 of ( %2 )"
-#~ msgstr "%1 de ( %2 )"
-
-#~ msgid "Form"
-#~ msgstr "Formulario"
-
-#~ msgid "Full path to the PEP8 checker to use:"
-#~ msgstr "Ruta completa del comprobador PEP8 a usar:"
-
-#~ msgid "PEP8 checker arguments:"
-#~ msgstr "Argumentos del comprobador PEP8:"
-
-#~ msgid "Download new"
-#~ msgstr "Descargar nuevo"
-
-#~ msgid "Share selected"
-#~ msgstr "Compartir selección"
-
-#~ msgid "Unused computation result"
-#~ msgstr "Resultado de cálculo no usado"
-
-#~ msgid "Python Debugger (pdb) Support"
-#~ msgstr "Implementación del depurador de Python (pdb)"
-
-#~ msgid "Support for the Python Debugger"
-#~ msgstr "Implementación del depurador de Python"
-
-#~ msgid "Sven Brauch"
-#~ msgstr "Sven Brauch"
-
-#~ msgid "Author"
-#~ msgstr "Autor"
-
-#~ msgid "Python Support"
-#~ msgstr "Implementación de Python"
-
-#~ msgid "Support for the Python Scripting Language"
-#~ msgstr "Implementación del lenguaje de script de Python"
-
-#~ msgctxt ""
-#~ "refers to types of variables in programming, as in \"various possible "
-#~ "types\""
-#~ msgid "various types"
-#~ msgstr "varios tipos"
-
-#~ msgid "%1 of %2 : %3"
-#~ msgstr "%1 de %2 : %3"
-
-#~ msgid "%1 of %2"
-#~ msgstr "%1 de %2"
-
-#~ msgid "Rename \"%1\"..."
-#~ msgstr "Cambiar el nombre de «%1»..."
-
-#~ msgid "No declaration under cursor"
-#~ msgstr "Ninguna declaración bajo el cursor"
-
-#~ msgid "Declaration is located in non-writeable file %1."
-#~ msgstr ""
-#~ "La declaración está ubicada en el archivo sin permiso de escritura %1."
-
-#~ msgid "Rename %1"
-#~ msgstr "Cambiar el nombre de %1"
-
-#~ msgid "New name:"
-#~ msgstr "Nuevo nombre:"
-
-#~ msgid "Rename"
-#~ msgstr "Cambiar nombre"
-
-#~ msgid ""
-#~ "Note: All overloaded functions, overloads, forward-declarations, etc. "
-#~ "will be renamed too"
-#~ msgstr ""
-#~ "Nota: también se cambiará el nombre de todas las funciones sobrecargadas, "
-#~ "las sobrecargas, las declaraciones previas, etc."
-
-#~ msgid "Cancel"
-#~ msgstr "Cancelar"
-
-#~ msgid "Uses"
-#~ msgstr "Usos"
-
-#~ msgid "Declaration Info"
-#~ msgstr "Información de la declaración"
-
-#~ msgid "Applying changes failed: %1"
-#~ msgstr "Ha fallado la aplicación de cambios: %1"
-
-#~ msgid "list"
-#~ msgstr "lista"
-
-#~ msgid "dictionary"
-#~ msgstr "diccionario"
diff -pruN 24.12.3-1/po/et/kdevpython.po 25.08.0-0ubuntu1/po/et/kdevpython.po
--- 24.12.3-1/po/et/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/et/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2020-01-15 14:53+0200\n"
 "Last-Translator: Marek Laane <qiilaq69@gmail.com>\n"
 "Language-Team: Estonian <kde-et@lists.linux.ee>\n"
@@ -201,32 +201,32 @@ msgstr "Nõutavad moodulid:"
 msgid "A comma separated list of modules required for the type"
 msgstr "Tüübile vajalike moodulite komadega eraldatud loend"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "Silutav programm tekitas tabamata erindi."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Pärast programmi töö lõppemist võib nüüd uurida selle olekut."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr "Silur peatub vaikselt, kui käivitatakse järgmine käsk."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Plugin Pythoni rakenduste silumiseks pdb-s."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "Vabandust, silumine on toetatud ainult Python 3.x rakenduste korral."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Toetamata interpretaator"
diff -pruN 24.12.3-1/po/eu/kdevpython.po 25.08.0-0ubuntu1/po/eu/kdevpython.po
--- 24.12.3-1/po/eu/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/eu/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdev-python\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2024-10-26 22:11+0200\n"
 "Last-Translator: Iñigo Salvador Azurmendi <xalba@ni.eus>\n"
 "Language-Team: Basque <kde-i18n-eu@kde.org>\n"
@@ -205,33 +205,33 @@ msgstr "Beharrezko moduluak:"
 msgid "A comma separated list of modules required for the type"
 msgstr "Motarako beharrezkoak diren moduluen, komaz bereizitako zerrenda bat"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "Araztutako programak oharkabeko salbuespen bat igorri du."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Orain, amaitu ondoren, programaren egoera ikuskatu dezakezu."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr "Araztailea isilean geldituko da hurrengo komandoa eragiten denean."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "«pdb» erabiliz Python aplikazioak arazteko plugin bat."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 "Sentitzen dugu, arazteko euskarria Python 3.x aplikazioetara mugatuta dago."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Euskarririk gabeko interpretea"
diff -pruN 24.12.3-1/po/fi/kdevpython.po 25.08.0-0ubuntu1/po/fi/kdevpython.po
--- 24.12.3-1/po/fi/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/fi/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -1,12 +1,12 @@
 # KDE Finnish translation sprint participants:
+# SPDX-FileCopyrightText: 2018, 2025 Tommi Nieminen <translator@legisign.org>
 # Lasse Liehu <lasse.liehu@gmail.com>, 2013, 2014, 2015, 2016.
-# Tommi Nieminen <translator@legisign.org>, 2018.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
-"PO-Revision-Date: 2018-08-19 17:06+0200\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
+"PO-Revision-Date: 2025-03-03 19:26+0200\n"
 "Last-Translator: Tommi Nieminen <translator@legisign.org>\n"
 "Language-Team: Finnish <kde-i18n-doc@kde.org>\n"
 "Language: fi\n"
@@ -14,6 +14,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 23.08.5\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -198,34 +199,34 @@ msgstr "Vaaditut moduulit:"
 msgid "A comma separated list of modules required for the type"
 msgstr "Pilkuin eroteltu luettelo tyypin vaatimista moduuleista"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr ""
 "Ohjelma, jonka virheitä paikannetaan, heitti käsittelemättömän poikkeuksen."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Voit nyt tarkastella ohjelman tilaa sen päätyttyä."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 "Virheenpaikannin pysähtyy hiljaisesti, kun seuraava komento suoritetaan."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Liitännäinen Python-sovellusten virheiden paikantamiseen pdb:llä."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "Virheiden paikantamista tuetaan vain Python 3.x -sovelluksille."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Tulkkia ei tueta"
@@ -433,13 +434,11 @@ msgid "Declaration for \"%1\" not found
 msgstr "Esittelyä ”%1” ei löydy määrämoduulista"
 
 #: duchain/declarationbuilder.cpp:1585
-#, fuzzy, kde-format
-#| msgid ""
-#| "First argument of class method is not called self, this is deprecated"
+#, kde-format
 msgid ""
 "First argument of class method is not called self or cls, this is deprecated"
 msgstr ""
-"Luokkametodin ensimmäinen parametri ei ole nimeltään self. Tämä on "
+"Luokkametodin ensimmäinen parametri ei ole nimeltään self tai cls: tämä on "
 "vanhentunut ominaisuus"
 
 #: duchain/declarationbuilder.cpp:1605
diff -pruN 24.12.3-1/po/fr/kdevpython.po 25.08.0-0ubuntu1/po/fr/kdevpython.po
--- 24.12.3-1/po/fr/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/fr/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2024-10-18 11:14+0200\n"
 "Last-Translator: Xavier Besnard <xavier.besnard@kde.org>\n"
 "Language-Team: French <French <kde-francophone@kde.org>>\n"
@@ -210,40 +210,40 @@ msgstr "Modules requis :"
 msgid "A comma separated list of modules required for the type"
 msgstr "Une liste séparée par des virgules des modules requis pour le type"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "Le programme en cours de débogage a déclenché une exception non gérée."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr ""
 "Vous pouvez maintenant analyser l'état du programme après qu'il se soit "
 "terminé."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 "Le débogueur s'arrêtera silencieusement lorsque la commande suivante sera "
 "déclenchée."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr ""
 "Un module externe pour déboguer des applications en Python avec le débogueur "
 "« pdb » de Python."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 "Désolé, le débogage n'est pris en charge que pour les applications Python 3."
 "x."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Interpréteur non pris en charge"
diff -pruN 24.12.3-1/po/ga/kdevpython.po 25.08.0-0ubuntu1/po/ga/kdevpython.po
--- 24.12.3-1/po/ga/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/ga/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2012-12-07 20:23-0500\n"
 "Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
 "Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"
@@ -200,32 +200,32 @@ msgstr ""
 msgid "A comma separated list of modules required for the type"
 msgstr ""
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr ""
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr ""
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr ""
diff -pruN 24.12.3-1/po/gl/kdevpython.po 25.08.0-0ubuntu1/po/gl/kdevpython.po
--- 24.12.3-1/po/gl/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/gl/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2025-01-12 17:11+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) <adrian@chaves.io>\n"
 "Language-Team: Proxecto Trasno (proxecto@trasno.gal)\n"
@@ -207,33 +207,33 @@ msgstr "Módulos necesarios:"
 msgid "A comma separated list of modules required for the type"
 msgstr "Unha lista de módulos necesarios para o tipo, separados por comas."
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr ""
 "O programa que se está a depurar produciu unha excepción non capturada."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Agora pode inspeccionar o estado do programa unha vez saíu."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr "O depurador deterase silandeiramente cando se active a seguinte orde."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Un complemento para depurar aplicacións de Python con pdb."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "Só se permite depurar aplicacións de Python 3.x."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Intérprete incompatíbel"
diff -pruN 24.12.3-1/po/he/kdevpython.po 25.08.0-0ubuntu1/po/he/kdevpython.po
--- 24.12.3-1/po/he/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/he/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdev-python\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2024-10-17 22:58+0300\n"
 "Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
 "Language-Team: צוות התרגום של KDE ישראל\n"
@@ -201,32 +201,32 @@ msgstr "מודולים נדרשים:"
 msgid "A comma separated list of modules required for the type"
 msgstr "רשימה מופרדת בפסיקים של מודולים שנחוצים לסוג"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "התוכנית בניתוח לניפוי שגיאות הרימה חריגה שלא נתפסה."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "עכשיו ניתן לחקור את מצב התוכנית לאחר יציאתה."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr "מנפה השגיאות ייעצר בשקט עם הזנקת הפקודה הבאה."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "תוסף לניפוי שגיאות ביישומי Python עם pdb."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "ניפוי שגיאות נתמך ביישומי Python 3.x ואילך בלבד, עמך הסליחה."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "מפענח לא נתמך"
diff -pruN 24.12.3-1/po/hi/kdevpython.po 25.08.0-0ubuntu1/po/hi/kdevpython.po
--- 24.12.3-1/po/hi/kdevpython.po	1970-01-01 00:00:00.000000000 +0000
+++ 25.08.0-0ubuntu1/po/hi/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -0,0 +1,581 @@
+# Hindi translations for kdev-python package.
+# Copyright (C) 2024 This file is copyright:
+# This file is distributed under the same license as the kdev-python package.
+# Kali <EMAIL@ADDRESS>, 2024.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: kdev-python\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
+"PO-Revision-Date: 2024-12-15 19:18+0530\n"
+"Last-Translator: Kali <EMAIL@ADDRESS>\n"
+"Language-Team: Hindi <fedora-trans-hi@redhat.com>\n"
+"Language: hi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 3.5\n"
+"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+
+#, kde-format
+msgctxt "NAME OF TRANSLATORS"
+msgid "Your names"
+msgstr "तुम्हारे नाम"
+
+#, kde-format
+msgctxt "EMAIL OF TRANSLATORS"
+msgid "Your emails"
+msgstr "आपके ईमेल"
+
+#: codecompletion/context.cpp:115
+#, kde-format
+msgid "insert Shebang line"
+msgstr "शेबैंग लाइन डालें"
+
+#: codecompletion/context.cpp:123
+#, kde-format
+msgid "specify document encoding"
+msgstr "दस्तावेज़ एनकोडिंग निर्दिष्ट करें"
+
+#: codecompletion/context.cpp:125
+#, kde-format
+msgid "Add file header"
+msgstr "फ़ाइल हेडर जोड़ें"
+
+#: codecompletion/context.cpp:175
+#, kde-format
+msgid "specify default parameter"
+msgstr "डिफ़ॉल्ट पैरामीटर निर्दिष्ट करें"
+
+#: codecompletion/context.cpp:386
+#, kde-format
+msgid "Insert next positional variable"
+msgstr "अगला स्थितीय चर डालें"
+
+#: codecompletion/context.cpp:391
+#, kde-format
+msgid "Insert named variable"
+msgstr "नामित चर डालें"
+
+#: codecompletion/context.cpp:427
+#, kde-format
+msgid "Format using str()"
+msgstr "str() का उपयोग करके प्रारूपित करें"
+
+#: codecompletion/context.cpp:428
+#, kde-format
+msgid "Format using repr()"
+msgstr "repr() का उपयोग करके प्रारूपित करें"
+
+#: codecompletion/context.cpp:436
+#, kde-format
+msgid "Format as left-aligned"
+msgstr "बाएं संरेखित स्वरूप में प्रारूपित करें"
+
+#: codecompletion/context.cpp:437
+#, kde-format
+msgid "Format as right-aligned"
+msgstr "दाएं संरेखित स्वरूप में प्रारूपित करें"
+
+#: codecompletion/context.cpp:438
+#, kde-format
+msgid "Format as centered"
+msgstr "केन्द्रित स्वरूप में प्रारूपित करें"
+
+#: codecompletion/context.cpp:442
+#, kde-format
+msgid "Specify precision"
+msgstr "परिशुद्धता निर्दिष्ट करें"
+
+#: codecompletion/context.cpp:443
+#, kde-format
+msgid "Format as percentage"
+msgstr "प्रतिशत के रूप में प्रारूपित करें"
+
+#: codecompletion/context.cpp:444
+#, kde-format
+msgid "Format as character"
+msgstr "वर्ण के रूप में प्रारूपित करें"
+
+#: codecompletion/context.cpp:445
+#, kde-format
+msgid "Format as binary number"
+msgstr "बाइनरी संख्या के रूप में प्रारूपित करें"
+
+#: codecompletion/context.cpp:446
+#, kde-format
+msgid "Format as octal number"
+msgstr "अष्टक संख्या के रूप में प्रारूपित करें"
+
+#: codecompletion/context.cpp:447
+#, kde-format
+msgid "Format as hexadecimal number"
+msgstr "हेक्साडेसिमल संख्या के रूप में प्रारूपित करें"
+
+#: codecompletion/context.cpp:448
+#, kde-format
+msgid "Format in scientific (exponent) notation"
+msgstr "वैज्ञानिक (घातांक) संकेतन में प्रारूप"
+
+#: codecompletion/context.cpp:449
+#, kde-format
+msgid "Format as fixed point number"
+msgstr "निश्चित बिंदु संख्या के रूप में प्रारूपित करें"
+
+#: codecompletion/context.cpp:509
+#, kde-format
+msgid "Initialize property"
+msgstr "संपत्ति आरंभ करें"
+
+#: codecompletion/items/functiondeclaration.cpp:81
+#, kde-format
+msgid "function"
+msgstr "समारोह"
+
+#: codecompletion/items/missingincludeitem.cpp:38
+#, kde-format
+msgctxt "programming; %1 is a code statement to be added in the editor"
+msgid "Add \"%1\""
+msgstr "\"%1\"जोड़ें"
+
+#: codegen/correctionfilegenerator.cpp:58
+#, kde-format
+msgid "Specify type for \"%1\"..."
+msgstr "\"%1\" के लिए प्रकार निर्दिष्ट करें..."
+
+#: codegen/correctionfilegenerator.cpp:108
+#, kde-format
+msgid "Function return type"
+msgstr "फ़ंक्शन वापसी प्रकार"
+
+#: codegen/correctionfilegenerator.cpp:111
+#, kde-format
+msgid "Local variable"
+msgstr "स्थानीय चर"
+
+#: codegen/correctionfilegenerator.cpp:147
+#, kde-format
+msgid "Sorry, cannot create hints for files which are not part of a project."
+msgstr ""
+"क्षमा करें, उन फ़ाइलों के लिए संकेत नहीं बनाए जा सकते जो किसी प्रोजेक्ट का हिस्सा नहीं हैं।"
+
+#. i18n: ectx: property (windowTitle), widget (QWidget, CorrectionWidget)
+#: codegen/correctionwidget.ui:20
+#, kde-format
+msgid "Specify correct type"
+msgstr "सही प्रकार निर्दिष्ट करें"
+
+#. i18n: ectx: property (text), widget (QLabel, givenKindLabel)
+#: codegen/correctionwidget.ui:28
+#, kde-format
+msgid "Kind:"
+msgstr "दयालु:"
+
+#. i18n: ectx: property (text), widget (QLabel, givenIdentifierLabel)
+#: codegen/correctionwidget.ui:42
+#, kde-format
+msgid "Identifier:"
+msgstr "पहचानकर्ता:"
+
+#. i18n: ectx: property (text), widget (QLabel, typeLabel)
+#: codegen/correctionwidget.ui:56
+#, kde-format
+msgid "Correct type:"
+msgstr "सही प्रकार:"
+
+#. i18n: ectx: property (placeholderText), widget (QLineEdit, typeText)
+#: codegen/correctionwidget.ui:63
+#, kde-format
+msgid "Code which evaluates to the type, e.g. int()"
+msgstr "कोड जो प्रकार का मूल्यांकन करता है, जैसे int()"
+
+#. i18n: ectx: property (text), widget (QLabel, importsLabel)
+#: codegen/correctionwidget.ui:70
+#, kde-format
+msgid "Required modules:"
+msgstr "आवश्यक मॉड्यूल:"
+
+#. i18n: ectx: property (placeholderText), widget (QLineEdit, importsText)
+#: codegen/correctionwidget.ui:77
+#, kde-format
+msgid "A comma separated list of modules required for the type"
+msgstr "प्रकार के लिए आवश्यक मॉड्यूल की अल्पविराम से अलग की गई सूची"
+
+#: debugger/debugsession.cpp:156
+#, kde-format
+msgid "The program being debugged raised an uncaught exception."
+msgstr "डिबग किए जा रहे प्रोग्राम ने एक अनकैच्ड अपवाद उठाया।"
+
+#: debugger/debugsession.cpp:157
+#, kde-format
+msgid "You can now inspect the status of the program after it exited."
+msgstr "अब आप प्रोग्राम से बाहर निकलने के बाद उसकी स्थिति का निरीक्षण कर सकते हैं।"
+
+#: debugger/debugsession.cpp:158
+#, kde-format
+msgid "The debugger will silently stop when the next command is triggered."
+msgstr "अगला आदेश सक्रिय होने पर डिबगर चुपचाप बंद हो जाएगा।"
+
+#: debugger/pdblauncher.cpp:44
+#, kde-format
+msgid "A plugin to debug Python applications with pdb."
+msgstr "पीडीबी के साथ पायथन अनुप्रयोगों को डीबग करने के लिए एक प्लगइन।"
+
+#: debugger/pdblauncher.cpp:85
+#, kde-format
+msgid "Sorry, debugging is only supported for Python 3.x applications."
+msgstr "क्षमा करें, डिबगिंग केवल पायथन 3.x अनुप्रयोगों के लिए समर्थित है।"
+
+#: debugger/pdblauncher.cpp:86
+#, kde-format
+msgid "Unsupported interpreter"
+msgstr "असमर्थित दुभाषिया"
+
+#: docfilekcm/docfilemanagerwidget.cpp:37
+#, kde-format
+msgid "Failed to find a valid data directory for kdevpythonsupport."
+msgstr "kdevpythonsupport के लिए वैध डेटा निर्देशिका खोजने में विफल।"
+
+#: docfilekcm/docfilemanagerwidget.cpp:51
+#, kde-format
+msgid "Generate..."
+msgstr "उत्पन्न..."
+
+#: docfilekcm/docfilemanagerwidget.cpp:53
+#, kde-format
+msgid "Import From Editor"
+msgstr "संपादक से आयात करें"
+
+#: docfilekcm/docfilemanagerwidget.cpp:54
+#, kde-format
+msgid ""
+"Copy the contents of the active editor window to a new file in the "
+"documentation directory"
+msgstr "सक्रिय संपादक विंडो की सामग्री को डॉक्यूमेंटेशन निर्देशिका में एक नई फ़ाइल में कॉपी करें"
+
+#: docfilekcm/docfilemanagerwidget.cpp:66
+#, kde-format
+msgid "Open File Manager"
+msgstr "फ़ाइल प्रबंधक खोलें"
+
+#: docfilekcm/docfilemanagerwidget.cpp:68
+#, kde-format
+msgctxt "Edit selected files"
+msgid "Edit Selected"
+msgstr "चयनित संपादित करें"
+
+#: docfilekcm/docfilemanagerwidget.cpp:70
+#, kde-format
+msgid "Search Paths..."
+msgstr "खोज पथ..."
+
+#: docfilekcm/docfilemanagerwidget.cpp:101
+#, kde-format
+msgctxt "displays a list of search paths below"
+msgid "Paths searched for documentation by kdev-python (in this order):"
+msgstr "kdev-python द्वारा दस्तावेज़ीकरण के लिए खोजे गए पथ (इस क्रम में):"
+
+#: docfilekcm/docfilemanagerwidget.cpp:141
+#, kde-format
+msgid "Enter a relative target path to copy %1 to:"
+msgstr "%1 को कॉपी करने के लिए सापेक्ष लक्ष्य पथ दर्ज करें:"
+
+#: docfilekcm/docfilemanagerwidget.cpp:145
+#, kde-format
+msgid ""
+"This path must match what you use in Python to import this module. For "
+"example, enter \"numpy/fft.py\" for numpy.fft"
+msgstr ""
+"यह पथ उससे मेल खाना चाहिए जो आप इस मॉड्यूल को आयात करने के लिए पायथन में उपयोग करते "
+"हैं। उदाहरण के लिए, numpy.fft के लिए \"numpy/fft.py\" दर्ज करें"
+
+#: docfilekcm/docfilemanagerwidget.cpp:147
+#, kde-format
+msgid "After copying, you will be editing the new document."
+msgstr "कॉपी करने के बाद, आप नये दस्तावेज़ को संपादित करेंगे।"
+
+#: docfilekcm/docfilemanagerwidget.cpp:166
+#, kde-format
+msgid "Please select at least one file from the list for editing."
+msgstr "कृपया संपादन के लिए सूची से कम से कम एक फ़ाइल का चयन करें।"
+
+#: docfilekcm/docfilewizard.cpp:41
+#, kde-format
+msgid "Configure the Python interpreter to use"
+msgstr "उपयोग करने के लिए पायथन इंटरप्रेटर को कॉन्फ़िगर करें"
+
+#: docfilekcm/docfilewizard.cpp:44
+#, kde-format
+msgid "Python executable"
+msgstr "पायथन निष्पादन योग्य"
+
+#: docfilekcm/docfilewizard.cpp:49
+#, kde-format
+msgid "Select a python module to generate documentation for"
+msgstr "दस्तावेज़ बनाने के लिए एक पायथन मॉड्यूल का चयन करें"
+
+#: docfilekcm/docfilewizard.cpp:53
+#, kde-format
+msgctxt "refers to selecting a python module to perform some operation on"
+msgid "Target module (e.g. \"math\")"
+msgstr "लक्ष्य मॉड्यूल (जैसे \"गणित\")"
+
+#: docfilekcm/docfilewizard.cpp:55
+#, kde-format
+msgid "Output filename"
+msgstr "आउटपुट फ़ाइल नाम"
+
+#: docfilekcm/docfilewizard.cpp:61
+#, kde-format
+msgid "Status and output"
+msgstr "स्थिति और आउटपुट"
+
+#: docfilekcm/docfilewizard.cpp:63 docfilekcm/docfilewizard.cpp:69
+#, kde-format
+msgid "The process has not been run yet."
+msgstr "प्रक्रिया अभी तक शुरू नहीं हुई है."
+
+#: docfilekcm/docfilewizard.cpp:75
+#, kde-format
+msgid "Script output"
+msgstr "स्क्रिप्ट आउटपुट"
+
+#: docfilekcm/docfilewizard.cpp:76
+#, kde-format
+msgid "Results"
+msgstr "परिणाम"
+
+#: docfilekcm/docfilewizard.cpp:82
+#, kde-format
+msgid "Close"
+msgstr "बंद करना"
+
+#: docfilekcm/docfilewizard.cpp:84
+#, kde-format
+msgid "Save and close"
+msgstr "सहेजें और बंद करें"
+
+#: docfilekcm/docfilewizard.cpp:87
+#, kde-format
+msgid "Generate"
+msgstr "उत्पन्न"
+
+#: docfilekcm/docfilewizard.cpp:138
+#, kde-format
+msgid "Couldn't find the introspect.py script; check your installation!"
+msgstr "introspect.py स्क्रिप्ट नहीं मिल सकी; अपनी स्थापना की जाँच करें!"
+
+#: docfilekcm/docfilewizard.cpp:142
+#, kde-format
+msgid ""
+"Couldn't find a valid kdev-python data directory; check your installation!"
+msgstr "वैध kdev-python डेटा निर्देशिका नहीं मिल सकी; अपनी स्थापना की जाँच करें!"
+
+#: docfilekcm/docfilewizard.cpp:148
+#, kde-format
+msgid "Invalid output filename"
+msgstr "अमान्य आउटपुट फ़ाइल नाम"
+
+#: docfilekcm/docfilewizard.cpp:188
+#, kde-format
+msgid ""
+"The output file <br/>%1<br/> already exists, do you want to overwrite it?"
+msgstr "आउटपुट फ़ाइल<br/> %1<br/> पहले से मौजूद है, क्या आप इसे अधिलेखित करना चाहते हैं?"
+
+#: docfilekcm/docfilewizard.cpp:203
+#, kde-format
+msgid ""
+"This file contains auto-generated documentation extracted\n"
+"from python run-time information. It is analyzed by KDevelop\n"
+"to offer features such as code-completion and syntax highlighting.\n"
+"If you discover errors in KDevelop's support for this module,\n"
+"you can edit this file to correct the errors, e.g. you can add\n"
+"additional return statements to functions to control the return\n"
+"type to be used for that function by the analyzer.\n"
+"Make sure to keep a copy of your changes so you don't accidentally\n"
+"overwrite them by re-generating the file.\n"
+msgstr ""
+"इस फ़ाइल में स्वचालित रूप से जेनरेट किए गए दस्तावेज़ हैं, \n"
+"जो पाइथन रन-टाइम जानकारी से निकाले गए हैं। \n"
+"कोड-पूर्णता और सिंटैक्स हाइलाइटिंग जैसी सुविधाएँ प्रदान करने के लिए KDevelop द्वारा इसका "
+"विश्लेषण किया जाता है। \n"
+"यदि आपको इस मॉड्यूल के लिए KDevelop के समर्थन में त्रुटियाँ मिलती हैं, \n"
+"तो आप त्रुटियों को ठीक करने के लिए इस फ़ाइल को संपादित कर सकते हैं, \n"
+"उदाहरण के लिए आप विश्लेषक द्वारा उस फ़ंक्शन के लिए उपयोग किए जाने वाले रिटर्न प्रकार को "
+"नियंत्रित करने के लिए \n"
+"फ़ंक्शन में अतिरिक्त रिटर्न स्टेटमेंट जोड़ सकते हैं। \n"
+"अपने परिवर्तनों की एक प्रति रखना सुनिश्चित करें ताकि आप फ़ाइल को फिर से जेनरेट करके गलती "
+"से उन्हें अधिलेखित न कर दें।\n"
+
+#: docfilekcm/kcm_docfiles.cpp:48
+#, kde-format
+msgid "Manage Documentation Files Used by the Python Plugin"
+msgstr "पायथन प्लगइन द्वारा उपयोग की जाने वाली दस्तावेज़ फ़ाइलों का प्रबंधन करें"
+
+#: docfilekcm/kcm_docfiles.cpp:58
+#, kde-format
+msgid "Python Documentation"
+msgstr "पायथन दस्तावेज़ीकरण"
+
+#: duchain/assistants/missingincludeassistant.cpp:48
+#, kde-format
+msgid "Generate documentation for module \"%1\"..."
+msgstr "मॉड्यूल \"%1\" के लिए दस्तावेज़ तैयार करें..."
+
+#: duchain/declarationbuilder.cpp:705
+#, kde-format
+msgid "Module \"%1\" not found"
+msgstr "मॉड्यूल \"%1\" नहीं मिला"
+
+#: duchain/declarationbuilder.cpp:776
+#, kde-format
+msgid "Declaration for \"%1\" not found in specified module"
+msgstr "\"%1\" के लिए घोषणा निर्दिष्ट मॉड्यूल में नहीं मिली"
+
+#: duchain/declarationbuilder.cpp:1585
+#, kde-format
+msgid ""
+"First argument of class method is not called self or cls, this is deprecated"
+msgstr "क्लास विधि का पहला तर्क self या cls नहीं कहा जाता है, यह अप्रासंगिक है"
+
+#: duchain/declarationbuilder.cpp:1605
+#, kde-format
+msgid ""
+"Non-static class method without arguments, must have at least one (self)"
+msgstr "तर्कों के बिना गैर-स्थिर वर्ग विधि, कम से कम एक (स्वयं) होना चाहिए"
+
+#: duchain/declarationbuilder.cpp:1766
+#, kde-format
+msgid "Return statement not within function declaration"
+msgstr "रिटर्न स्टेटमेंट फ़ंक्शन घोषणा के अंतर्गत नहीं है"
+
+#: duchain/navigation/declarationnavigationcontext.cpp:67
+#, kde-format
+msgctxt "refers to an unknown type in programming"
+msgid "unknown"
+msgstr "अज्ञात"
+
+#: duchain/navigation/declarationnavigationcontext.cpp:83
+#: duchain/navigation/declarationnavigationcontext.cpp:99
+#: duchain/types/indexedcontainer.cpp:78
+#, kde-format
+msgctxt "as in list of int, set of string"
+msgid "%1 of %2"
+msgstr "%2 में से %1"
+
+#: duchain/types/unsuretype.cpp:101
+#, kde-format
+msgctxt "some object that can be called, in programming"
+msgid "<callable>"
+msgstr "<कॉल करने योग्य>"
+
+#: duchain/types/unsuretype.cpp:106
+#, kde-format
+msgctxt "a set with some elements"
+msgid "<iterable>"
+msgstr "<पुनरावर्तनीय>"
+
+#: duchain/types/unsuretype.cpp:127
+#, kde-format
+msgctxt "refers to a type (in program code) which is not known"
+msgid "mixed"
+msgstr "मिश्रित"
+
+#: duchain/types/unsuretype.cpp:130
+#, kde-format
+msgctxt "refers to a type (in program code) which can have multiple values"
+msgid "unsure (%1)"
+msgstr "अनिश्चित (%1)"
+
+#: duchain/usebuilder.cpp:83
+#, kde-format
+msgid "Undefined variable: %1"
+msgstr "अपरिभाषित चर: %1"
+
+#: duchain/usebuilder.cpp:130
+#, kde-format
+msgid "Attribute \"%1\" not found on accessed object"
+msgstr "एक्सेस की गई वस्तु पर विशेषता \"%1\" नहीं मिली"
+
+#: pep8kcm/kcm_pep8.cpp:63
+#, kde-format
+msgid "Configure Python Style Checking"
+msgstr "पायथन शैली जाँच कॉन्फ़िगर करें"
+
+#: pep8kcm/kcm_pep8.cpp:73
+#, kde-format
+msgid "Python Style Checking"
+msgstr "पायथन शैली जाँच"
+
+#. i18n: ectx: property (title), widget (QGroupBox, enableChecking)
+#: pep8kcm/pep8.ui:29
+#, kde-format
+msgid "Enable Style Checking"
+msgstr "शैली जाँच सक्षम करें"
+
+#. i18n: ectx: property (placeholderText), widget (QLineEdit, disableErrors)
+#. i18n: ectx: property (placeholderText), widget (QLineEdit, enableErrors)
+#: pep8kcm/pep8.ui:44 pep8kcm/pep8.ui:58
+#, kde-format
+msgid "Comma-separated list of error codes"
+msgstr "त्रुटि कोडों की अल्पविराम से अलग की गई सूची"
+
+#. i18n: ectx: property (text), widget (QLabel, label_2)
+#: pep8kcm/pep8.ui:51
+#, kde-format
+msgid "Enable these errors and warnings:"
+msgstr "इन त्रुटियों और चेतावनियों को सक्षम करें:"
+
+#. i18n: ectx: property (text), widget (QLabel, label_3)
+#: pep8kcm/pep8.ui:65
+#, kde-format
+msgid "Maximum line length:"
+msgstr "अधिकतम पंक्ति लंबाई:"
+
+#. i18n: ectx: property (text), widget (QLabel, label)
+#: pep8kcm/pep8.ui:88
+#, kde-format
+msgid "Disable these errors and warnings:"
+msgstr "इन त्रुटियों और चेतावनियों को अक्षम करें:"
+
+#. i18n: ectx: property (text), widget (QLabel, label_4)
+#: pep8kcm/pep8.ui:100
+#, kde-format
+msgid ""
+"The `pycodestyle` Python module must be installed in order to use style "
+"checking."
+msgstr ""
+"शैली जाँच का उपयोग करने के लिए `pycodestyle` पायथन मॉड्यूल स्थापित होना चाहिए।"
+
+#. i18n: ectx: property (text), widget (QLabel, label)
+#: projectconfig/projectconfig.ui:19
+#, kde-format
+msgid "Python interpreter:"
+msgstr "पायथन इंटरप्रेटर:"
+
+#. i18n: ectx: property (placeholderText), widget (QLineEdit, pythonInterpreter)
+#: projectconfig/projectconfig.ui:26
+#, kde-format
+msgid "Full path to python interpreter, leave empty for default"
+msgstr "पायथन इंटरप्रेटर का पूर्ण पथ, डिफ़ॉल्ट के लिए रिक्त छोड़ दें"
+
+#: projectconfig/projectconfigpage.cpp:47
+#, kde-format
+msgid "Python Settings"
+msgstr "पायथन सेटिंग्स"
+
+#: pythonlanguagesupport.cpp:140
+#, kde-format
+msgid "Format source with the autopep8 formatter."
+msgstr "ऑटोपेप8 फ़ॉर्मेटर के साथ स्रोत को फ़ॉर्मेट करें।"
+
+#: pythonstylechecking.cpp:107
+#, kde-format
+msgid "PEP8 checker error: %1"
+msgstr "PEP8 चेकर त्रुटि: %1"
+
+#: pythonstylechecking.cpp:209
+#, kde-format
+msgid "The PEP8 syntax checker does not seem to work correctly."
+msgstr "ऐसा प्रतीत होता है कि PEP8 सिंटैक्स परीक्षक सही ढंग से काम नहीं कर रहा है।"
diff -pruN 24.12.3-1/po/hu/kdevpython.po 25.08.0-0ubuntu1/po/hu/kdevpython.po
--- 24.12.3-1/po/hu/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/hu/kdevpython.po	2025-07-31 22:47:59.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-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2014-01-20 20:24+0100\n"
 "Last-Translator: Balázs Úr <urbalazs@gmail.com>\n"
 "Language-Team: Hungarian <kde-l10n-hu@kde.org>\n"
@@ -200,33 +200,33 @@ msgstr ""
 msgid "A comma separated list of modules required for the type"
 msgstr ""
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr ""
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr ""
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Egy bővítmény Python alkalmazások hibakeresés PDB segítéséhez."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, fuzzy, kde-format
 #| msgid "Sorry, debugging is only supported for Python 2.x applications."
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "Elnézést, a hibakeresés csak a Python 2.x alkalmazásokat támogatja."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Nem támogatott értelmező"
diff -pruN 24.12.3-1/po/ia/kdevpython.po 25.08.0-0ubuntu1/po/ia/kdevpython.po
--- 24.12.3-1/po/ia/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/ia/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdev-python\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2024-09-11 10:22+0200\n"
 "Last-Translator: giovanni <g.sora@tiscali.it>\n"
 "Language-Team: Interlingua <kde-i18n-doc@kde.org>\n"
@@ -200,32 +200,32 @@ msgstr ""
 msgid "A comma separated list of modules required for the type"
 msgstr ""
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr ""
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr ""
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr ""
diff -pruN 24.12.3-1/po/it/kdevpython.po 25.08.0-0ubuntu1/po/it/kdevpython.po
--- 24.12.3-1/po/it/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/it/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2024-10-18 13:53+0200\n"
 "Last-Translator: Luigi Toscano <luigi.toscano@tiscali.it>\n"
 "Language-Team: Italian <kde-i18n-it@kde.org>\n"
@@ -204,34 +204,34 @@ msgstr "Moduli richiesti:"
 msgid "A comma separated list of modules required for the type"
 msgstr "Una lista separata da virgole di moduli richiesti dal tipo"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "Il programma in fase di debug ha generato un'eccezione non gestita."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Ora puoi ispezionare lo stato del programma dopo la sua chiusura."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 "Il debugger si fermerà senza avvisare quando verrà attivato il prossimo "
 "comando."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Un'estensione per eseguire il debug delle applicazioni Python con pdb."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "Spiacente, il debug è supportato solo per le applicazioni Python 3.x."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Interprete non supportato"
diff -pruN 24.12.3-1/po/ja/kdevpython.po 25.08.0-0ubuntu1/po/ja/kdevpython.po
--- 24.12.3-1/po/ja/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/ja/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2009-01-26 21:02+0900\n"
 "Last-Translator: Japanese KDE translation team <kde-jp@kde.org>\n"
 "Language-Team: Japanese <kde-jp@kde.org>\n"
@@ -197,32 +197,32 @@ msgstr ""
 msgid "A comma separated list of modules required for the type"
 msgstr ""
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr ""
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr ""
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr ""
diff -pruN 24.12.3-1/po/ka/kdevpython.po 25.08.0-0ubuntu1/po/ka/kdevpython.po
--- 24.12.3-1/po/ka/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/ka/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdev-python\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2024-10-17 05:30+0200\n"
 "Last-Translator: Temuri Doghonadze <temuri.doghonadze@gmail.com>\n"
 "Language-Team: Georgian <kde-i18n-doc@kde.org>\n"
@@ -46,7 +46,7 @@ msgstr "ფაილის თავს
 #: codecompletion/context.cpp:175
 #, kde-format
 msgid "specify default parameter"
-msgstr "ნაგულისხმები პარამეტრის მითითება"
+msgstr "ნაგულისხმევი პარამეტრის მითითება"
 
 #: codecompletion/context.cpp:386
 #, kde-format
@@ -203,33 +203,33 @@ msgstr "აუცილებელი 
 msgid "A comma separated list of modules required for the type"
 msgstr "ტიპისთვის აუცილებელი მძიმით გამოყოფილი მოდულების სია"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "გამართვადი პროგრამის უცნობი შეცდომა."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr ""
 "ახლა პროგრამის სტატუსი მისი მუშაობის დასრულების შემდეგ შეგიძლიათ შეამოწმოთ."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr "გამმართველი შემდეგი ბრძანების დატრიგერებისას ჩუმად გაჩერდება."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Python-ის აპლიკაციების pdb-ით გამართვის დამატება."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "უკაცრავად, გამართვა მხოლოდ Python 3.x აპლიკაციებისთვისაა მხარდაჭერილი."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "მხარდაუჭერელი ინტერპრეტატორი"
@@ -571,7 +571,7 @@ msgstr "Python -ის ინტერ
 #, kde-format
 msgid "Full path to python interpreter, leave empty for default"
 msgstr ""
-"სრული ბილიკი python-ის ინტერპრეტატორამდე. ნაგულისხმები მნიშვნელობის "
+"სრული ბილიკი python-ის ინტერპრეტატორამდე. ნაგულისხმევი მნიშვნელობის "
 "გამოსაყენებლად ცარიელი დატოვეთ"
 
 #: projectconfig/projectconfigpage.cpp:47
diff -pruN 24.12.3-1/po/kk/kdevpython.po 25.08.0-0ubuntu1/po/kk/kdevpython.po
--- 24.12.3-1/po/kk/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/kk/kdevpython.po	2025-07-31 22:47:59.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-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2013-11-15 05:35+0600\n"
 "Last-Translator: Sairan Kikkarin <sairan@computer.org>\n"
 "Language-Team: Kazakh <kde-i18n-doc@kde.org>\n"
@@ -203,33 +203,33 @@ msgstr ""
 msgid "A comma separated list of modules required for the type"
 msgstr ""
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "Бағдарламаны жөндеу мақсатпен жібергенде беймәлім ерекшелік орын алды."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Енді бағдарламаның доғарылғаннан кейінгі күй-жайын білуге болады."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr "Келесі командаға ауысқанда жөндегіш үндемей тоқтатады."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Python бағдарламасын pdb көмегімен жөндейтін плагині."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, fuzzy, kde-format
 #| msgid "Sorry, debugging is only supported for Python 2.x applications."
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "Ғафу етіңіз, жөндеу тек қана Python 2.x бағдарламаларға істейді."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Қолдауы жоқ интерпретаторы"
diff -pruN 24.12.3-1/po/ko/kdevpython.po 25.08.0-0ubuntu1/po/ko/kdevpython.po
--- 24.12.3-1/po/ko/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/ko/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevelop\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2024-12-24 16:53+0100\n"
 "Last-Translator: Shinjo Park <kde@peremen.name>\n"
 "Language-Team: Korean <kde-kr@kde.org>\n"
@@ -197,32 +197,32 @@ msgstr "필요한 모듈:"
 msgid "A comma separated list of modules required for the type"
 msgstr "쉼표로 구분된 형식에 필요한 모듈 목록"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "디버그하고 있는 프로그램에서 처리되지 않은 예외가 발생했습니다."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "프로그램이 종료된 후 상태를 조사할 수 있습니다."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr "다음 명령을 내렸을 때 디버거가 조용히 중단됩니다."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Python 앱을 pdb로 디버그하는 플러그인입니다."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "디버깅은 Python 3.x 앱만 지원합니다."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "지원하지 않는 인터프리터"
diff -pruN 24.12.3-1/po/lt/kdevpython.po 25.08.0-0ubuntu1/po/lt/kdevpython.po
--- 24.12.3-1/po/lt/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/lt/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2009-01-25 22:33+0200\n"
 "Last-Translator: Andrius Štikonas <andrius@stikonas.eu>\n"
 "Language-Team: Lithuanian <kde-i18n-lt@kde.org>\n"
@@ -201,32 +201,32 @@ msgstr ""
 msgid "A comma separated list of modules required for the type"
 msgstr ""
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr ""
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr ""
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr ""
diff -pruN 24.12.3-1/po/mai/kdevpython.po 25.08.0-0ubuntu1/po/mai/kdevpython.po
--- 24.12.3-1/po/mai/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/mai/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2010-09-24 13:22+0530\n"
 "Last-Translator: Rajesh Ranjan <rajesh672@gmail.com>\n"
 "Language-Team: Maithili <bhashaghar@googlegroups.com>\n"
@@ -201,32 +201,32 @@ msgstr ""
 msgid "A comma separated list of modules required for the type"
 msgstr ""
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr ""
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr ""
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr ""
diff -pruN 24.12.3-1/po/mr/kdevpython.po 25.08.0-0ubuntu1/po/mr/kdevpython.po
--- 24.12.3-1/po/mr/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/mr/kdevpython.po	2025-07-31 22:47:59.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-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2013-03-09 15:00+0530\n"
 "Last-Translator: Chetan Khona <chetan@kompkin.com>\n"
 "Language-Team: Marathi <kde-i18n-doc@kde.org>\n"
@@ -200,32 +200,32 @@ msgstr ""
 msgid "A comma separated list of modules required for the type"
 msgstr ""
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr ""
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr ""
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr ""
diff -pruN 24.12.3-1/po/nds/kdevpython.po 25.08.0-0ubuntu1/po/nds/kdevpython.po
--- 24.12.3-1/po/nds/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/nds/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2014-03-17 18:44+0100\n"
 "Last-Translator: Manfred Wiese <m.j.wiese@web.de>\n"
 "Language-Team: Low Saxon <kde-i18n-nds@kde.org>\n"
@@ -201,32 +201,32 @@ msgstr "Nödig Modulen:"
 msgid "A comma separated list of modules required for the type"
 msgstr ""
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr ""
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr ""
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Nich ünnerstütt Interpreter"
diff -pruN 24.12.3-1/po/nl/kdevpython.po 25.08.0-0ubuntu1/po/nl/kdevpython.po
--- 24.12.3-1/po/nl/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/nl/kdevpython.po	2025-07-31 22:47:59.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-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2024-10-17 12:05+0200\n"
 "Last-Translator: Freek de Kruijf <freekdekruijf@kde.nl>\n"
 "Language-Team: \n"
@@ -201,36 +201,36 @@ msgstr "Vereiste modulen:"
 msgid "A comma separated list of modules required for the type"
 msgstr "Een kommagescheiden lijst met modulen vereist voor het type"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr ""
 "Het programma dat wordt gedebugd kwam met een niet gevangen uitzondering."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr ""
 "U kunt nu de status van het programma inspecteren nadat het is beëindigd."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 "De debugger zal stilletjes stoppen wanneer het volgende commando wordt "
 "geactiveerd."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Een plug-in voor het debuggen van Python-toepassingen met pdb."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "Debuggen is alleen ondersteund voor Python 3.x toepassingen."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Niet ondersteunde interpretator"
diff -pruN 24.12.3-1/po/nn/kdevpython.po 25.08.0-0ubuntu1/po/nn/kdevpython.po
--- 24.12.3-1/po/nn/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/nn/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -5,7 +5,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdev-python\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2021-02-09 19:20+0100\n"
 "Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
 "Language-Team: Norwegian Nynorsk <l10n-no@lister.huftis.org>\n"
@@ -202,33 +202,33 @@ msgstr "Påkravde modular:"
 msgid "A comma separated list of modules required for the type"
 msgstr "Kommaskild liste med modular som er påkravde for typen"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "Programmet som vart feilsøkt, gav eit unntak som ikkje vart fanga opp."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Du kan no inspisera statusen til programmet etter at det avslutta."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 "Feilsøkjaren vil stoppa (utan meldingar) når neste kommando vert utløyst."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Programtillegg for å feilsøkja Python-program med pdb."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "Feilsøking er berre støtta for Python 3.x-program."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Ikkje-støtta fortolkar"
diff -pruN 24.12.3-1/po/pl/kdevpython.po 25.08.0-0ubuntu1/po/pl/kdevpython.po
--- 24.12.3-1/po/pl/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/pl/kdevpython.po	2025-07-31 22:47:59.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-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2024-10-19 12:37+0200\n"
 "Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>\n"
 "Language-Team: Polish <kde-i18n-doc@kde.org>\n"
@@ -17,7 +17,6 @@ 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"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -204,34 +203,34 @@ msgstr "Wymagane moduły:"
 msgid "A comma separated list of modules required for the type"
 msgstr "Wykaz modułów wymaganych dla tego rodzaju oddzielony przecinkami"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "Debugowany program zgłosił niezłapany wyjątek."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Teraz możesz przejrzeć stan programu po jego wyjściu."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 "Debugger zatrzyma się po cichu, gdy zostanie wywołane następne polecenie."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Wtyczka do debugowania programów Pythona z pdb."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 "Wybacz, debugowanie jest obsługiwane jedynie dla programów Pythona 3.x."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Nieobsługiwany program interpretujący"
diff -pruN 24.12.3-1/po/pt/kdevpython.po 25.08.0-0ubuntu1/po/pt/kdevpython.po
--- 24.12.3-1/po/pt/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/pt/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2017-06-08 11:11+0100\n"
 "Last-Translator: José Nuno Coelho Pires <zepires@gmail.com>\n"
 "Language-Team: Portuguese <kde-i18n-pt@kde.org>\n"
@@ -201,35 +201,35 @@ msgstr "Módulos necessários:"
 msgid "A comma separated list of modules required for the type"
 msgstr "Uma lista, separada por vírgulas, de módulos necessários para o tipo"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "O programa em depuração emitiu uma excepção não capturada."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Poderá agora inspeccionar o estado do programa depois de ter saído."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 "O depurador irá parar silenciosamente quando o comando seguinte for invocado."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Um 'plugin' para depurar aplicações em Python com o 'pdb'."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 "Infelizmente, apenas é suportada a depuração para as aplicações em Python 3."
 "x."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Interpretador não suportado"
diff -pruN 24.12.3-1/po/pt_BR/kdevpython.po 25.08.0-0ubuntu1/po/pt_BR/kdevpython.po
--- 24.12.3-1/po/pt_BR/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/pt_BR/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2025-02-05 23:49-0300\n"
 "Last-Translator: Guilherme Marçal Silva <guimarcalsilva@gmail.com>\n"
 "Language-Team: Brazilian Portuguese <kde-i18n-pt_BR@kde.org>\n"
@@ -205,35 +205,35 @@ msgstr "Módulos necessários:"
 msgid "A comma separated list of modules required for the type"
 msgstr "Uma lista separada por vírgulas, de módulos necessários para o tipo"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "O programa sendo depurado apresentou uma exceção não detectada."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Você pode agora inspecionar o estado do programa após sua saída."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 "O depurador interromperá silenciosamente quando o próximo comando for "
 "disparado."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Um plugin para depurar aplicativos Python com pdb."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 "Desculpe, mas somente aplicativos em Python 3.x tem suporte à depuração."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Interpretador não suportado"
diff -pruN 24.12.3-1/po/ro/kdevpython.po 25.08.0-0ubuntu1/po/ro/kdevpython.po
--- 24.12.3-1/po/ro/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/ro/kdevpython.po	2025-07-31 22:47:59.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-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2012-12-21 03:14+0200\n"
 "Last-Translator: Sergiu Bivol <sergiu@cip.md>\n"
 "Language-Team: Romanian <kde-i18n-ro@kde.org>\n"
@@ -201,32 +201,32 @@ msgstr ""
 msgid "A comma separated list of modules required for the type"
 msgstr ""
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr ""
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr ""
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Interpretor incompatibil"
diff -pruN 24.12.3-1/po/ru/kdevpython.po 25.08.0-0ubuntu1/po/ru/kdevpython.po
--- 24.12.3-1/po/ru/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/ru/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -4,21 +4,22 @@
 # Alexander Lakhin <exclusion@gmail.com>, 2013.
 # Alexander Potashev <aspotashev@gmail.com>, 2018.
 # Olesya Gerasimenko <translation-team@basealt.ru>, 2022.
+# SPDX-FileCopyrightText: 2025 Alexander Yavorsky <kekcuha@gmail.com>
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
-"PO-Revision-Date: 2022-03-03 15:16+0300\n"
-"Last-Translator: Olesya Gerasimenko <translation-team@basealt.ru>\n"
-"Language-Team: Basealt Translation Team\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
+"PO-Revision-Date: 2025-05-22 18:13+0300\n"
+"Last-Translator: Alexander Yavorsky <kekcuha@gmail.com>\n"
+"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
 "Language: ru\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n"
 "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Lokalize 21.12.1\n"
+"X-Generator: Lokalize 25.04.1\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -205,32 +206,32 @@ msgid "A comma separated list of modules
 msgstr ""
 "Список разделённых запятыми модулей, необходимых для работы с этим типом"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "В отлаживаемой программе возникло необрабатываемое исключение."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Сейчас вы можете изучить состояние программы после этого события."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr "Отладчик остановится сам при выполнении следующей команды."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Расширение для отладки приложений Python в pdb"
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "К сожалению, отладка поддерживается только для приложений Python 3.x."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Неподдерживаемый интерпретатор"
@@ -441,12 +442,12 @@ msgid "Declaration for \"%1\" not found
 msgstr "Объявление «%1» не найдено в указанном модуле"
 
 #: duchain/declarationbuilder.cpp:1585
-#, fuzzy, kde-format
-#| msgid ""
-#| "First argument of class method is not called self, this is deprecated"
+#, kde-format
 msgid ""
 "First argument of class method is not called self or cls, this is deprecated"
-msgstr "Первый аргумент метода класса называется не self — эта запись устарела"
+msgstr ""
+"Первый аргумент метода класса называется не self или cls — эта запись "
+"устарела"
 
 #: duchain/declarationbuilder.cpp:1605
 #, kde-format
diff -pruN 24.12.3-1/po/sa/kdevpython.po 25.08.0-0ubuntu1/po/sa/kdevpython.po
--- 24.12.3-1/po/sa/kdevpython.po	1970-01-01 00:00:00.000000000 +0000
+++ 25.08.0-0ubuntu1/po/sa/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -0,0 +1,581 @@
+# Sanskrit translations for kdev-python package.
+# Copyright (C) 2024 This file is copyright:
+# This file is distributed under the same license as the kdev-python package.
+# Kali <EMAIL@ADDRESS>, 2024.
+#
+# SPDX-FileCopyrightText: 2024 kali <skkalwar999@gmail.com>
+msgid ""
+msgstr ""
+"Project-Id-Version: kdev-python\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
+"PO-Revision-Date: 2024-12-24 20:39+0530\n"
+"Last-Translator: kali <shreekantkalwar@gmail.com>\n"
+"Language-Team: Sanskrit <kde-i18n-doc@kde.org>\n"
+"Language: sa\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>2);\n"
+"X-Generator: Lokalize 24.08.2\n"
+
+#, kde-format
+msgctxt "NAME OF TRANSLATORS"
+msgid "Your names"
+msgstr "श्रीकान्त् कलवार्"
+
+#, kde-format
+msgctxt "EMAIL OF TRANSLATORS"
+msgid "Your emails"
+msgstr "skkalwar999@gmail.com"
+
+#: codecompletion/context.cpp:115
+#, kde-format
+msgid "insert Shebang line"
+msgstr "शेबङ्ग रेखा सम्मिलितं कुर्वन्तु"
+
+#: codecompletion/context.cpp:123
+#, kde-format
+msgid "specify document encoding"
+msgstr "दस्तावेज एन्कोडिंग् निर्दिशन्तु"
+
+#: codecompletion/context.cpp:125
+#, kde-format
+msgid "Add file header"
+msgstr "सञ्चिकाशीर्षकं योजयन्तु"
+
+#: codecompletion/context.cpp:175
+#, kde-format
+msgid "specify default parameter"
+msgstr "पूर्वनिर्धारितं पैरामीटर् निर्दिशन्तु"
+
+#: codecompletion/context.cpp:386
+#, kde-format
+msgid "Insert next positional variable"
+msgstr "अग्रिमः स्थितिचरं सम्मिलितं कुर्वन्तु"
+
+#: codecompletion/context.cpp:391
+#, kde-format
+msgid "Insert named variable"
+msgstr "नामकं चरं सम्मिलितं कुर्वन्तु"
+
+#: codecompletion/context.cpp:427
+#, kde-format
+msgid "Format using str()"
+msgstr "str() इत्यस्य उपयोगेन प्रारूपणं कुर्वन्तु ।"
+
+#: codecompletion/context.cpp:428
+#, kde-format
+msgid "Format using repr()"
+msgstr "repr() इत्यस्य उपयोगेन प्रारूपणं कुर्वन्तु ।"
+
+#: codecompletion/context.cpp:436
+#, kde-format
+msgid "Format as left-aligned"
+msgstr "वाम-संरेखितरूपेण प्रारूपं कुर्वन्तु"
+
+#: codecompletion/context.cpp:437
+#, kde-format
+msgid "Format as right-aligned"
+msgstr "दक्षिण-संरेखितरूपेण प्रारूपं कुर्वन्तु"
+
+#: codecompletion/context.cpp:438
+#, kde-format
+msgid "Format as centered"
+msgstr "केन्द्रीकृतरूपेण प्रारूपं कुर्वन्तु"
+
+#: codecompletion/context.cpp:442
+#, kde-format
+msgid "Specify precision"
+msgstr "सटीकता निर्दिशतु"
+
+#: codecompletion/context.cpp:443
+#, kde-format
+msgid "Format as percentage"
+msgstr "प्रतिशतरूपेण प्रारूपं कुर्वन्तु"
+
+#: codecompletion/context.cpp:444
+#, kde-format
+msgid "Format as character"
+msgstr "वर्णरूपेण प्रारूपं कुर्वन्तु"
+
+#: codecompletion/context.cpp:445
+#, kde-format
+msgid "Format as binary number"
+msgstr "द्विचक्रीयसङ्ख्यारूपेण प्रारूपं कुर्वन्तु"
+
+#: codecompletion/context.cpp:446
+#, kde-format
+msgid "Format as octal number"
+msgstr "अष्टसङ्ख्यारूपेण प्रारूपं कुर्वन्तु"
+
+#: codecompletion/context.cpp:447
+#, kde-format
+msgid "Format as hexadecimal number"
+msgstr "षट्दशमलवसङ्ख्यारूपेण प्रारूपं कुर्वन्तु"
+
+#: codecompletion/context.cpp:448
+#, kde-format
+msgid "Format in scientific (exponent) notation"
+msgstr "वैज्ञानिक (घटक) संकेतने प्रारूप"
+
+#: codecompletion/context.cpp:449
+#, kde-format
+msgid "Format as fixed point number"
+msgstr "नियतबिन्दुसङ्ख्यारूपेण प्रारूपं कुर्वन्तु"
+
+#: codecompletion/context.cpp:509
+#, kde-format
+msgid "Initialize property"
+msgstr "सम्पत्तिं आरभत"
+
+#: codecompletion/items/functiondeclaration.cpp:81
+#, kde-format
+msgid "function"
+msgstr "नियोग"
+
+#: codecompletion/items/missingincludeitem.cpp:38
+#, kde-format
+msgctxt "programming; %1 is a code statement to be added in the editor"
+msgid "Add \"%1\""
+msgstr "\"%1\" योजयतु।"
+
+#: codegen/correctionfilegenerator.cpp:58
+#, kde-format
+msgid "Specify type for \"%1\"..."
+msgstr "\"%1\" कृते प्रकारं निर्दिशन्तु..."
+
+#: codegen/correctionfilegenerator.cpp:108
+#, kde-format
+msgid "Function return type"
+msgstr "फंक्शन् रिटर्न प्रकार"
+
+#: codegen/correctionfilegenerator.cpp:111
+#, kde-format
+msgid "Local variable"
+msgstr "स्थानीय चर"
+
+#: codegen/correctionfilegenerator.cpp:147
+#, kde-format
+msgid "Sorry, cannot create hints for files which are not part of a project."
+msgstr ""
+"क्षम्यतां, परियोजनायाः भागः न भवन्ति इति सञ्चिकानां कृते संकेतान् निर्मातुं न शक्नोति ।"
+
+#. i18n: ectx: property (windowTitle), widget (QWidget, CorrectionWidget)
+#: codegen/correctionwidget.ui:20
+#, kde-format
+msgid "Specify correct type"
+msgstr "सम्यक् प्रकारं निर्दिशतु"
+
+#. i18n: ectx: property (text), widget (QLabel, givenKindLabel)
+#: codegen/correctionwidget.ui:28
+#, kde-format
+msgid "Kind:"
+msgstr "दयालु:"
+
+#. i18n: ectx: property (text), widget (QLabel, givenIdentifierLabel)
+#: codegen/correctionwidget.ui:42
+#, kde-format
+msgid "Identifier:"
+msgstr "परिचयकः :"
+
+#. i18n: ectx: property (text), widget (QLabel, typeLabel)
+#: codegen/correctionwidget.ui:56
+#, kde-format
+msgid "Correct type:"
+msgstr "सम्यक् प्रकारः :"
+
+#. i18n: ectx: property (placeholderText), widget (QLineEdit, typeText)
+#: codegen/correctionwidget.ui:63
+#, kde-format
+msgid "Code which evaluates to the type, e.g. int()"
+msgstr "कोडः यः प्रकारं प्रति मूल्याङ्कनं करोति, उदा. int()"
+
+#. i18n: ectx: property (text), widget (QLabel, importsLabel)
+#: codegen/correctionwidget.ui:70
+#, kde-format
+msgid "Required modules:"
+msgstr "आवश्यकाः मॉड्यूलाः :"
+
+#. i18n: ectx: property (placeholderText), widget (QLineEdit, importsText)
+#: codegen/correctionwidget.ui:77
+#, kde-format
+msgid "A comma separated list of modules required for the type"
+msgstr "प्रकारस्य कृते आवश्यकानां मॉड्यूलानां अल्पविरामविभक्तसूची"
+
+#: debugger/debugsession.cpp:156
+#, kde-format
+msgid "The program being debugged raised an uncaught exception."
+msgstr "त्रुटिनिवारणं क्रियमाणः कार्यक्रमः अगृहीतं अपवादं उत्थापितवान् ।"
+
+#: debugger/debugsession.cpp:157
+#, kde-format
+msgid "You can now inspect the status of the program after it exited."
+msgstr "इदानीं भवान् कार्यक्रमस्य निर्गमनानन्तरं तस्य स्थितिं निरीक्षितुं शक्नोति ।"
+
+#: debugger/debugsession.cpp:158
+#, kde-format
+msgid "The debugger will silently stop when the next command is triggered."
+msgstr "अग्रिमः आदेशः प्रवर्तते सति त्रुटिनिवारकः मौनेन स्थगयिष्यति ।"
+
+#: debugger/pdblauncher.cpp:44
+#, kde-format
+msgid "A plugin to debug Python applications with pdb."
+msgstr "pdb इत्यनेन सह Python अनुप्रयोगानाम् त्रुटिनिवारणार्थं प्लगिन् ।"
+
+#: debugger/pdblauncher.cpp:85
+#, kde-format
+msgid "Sorry, debugging is only supported for Python 3.x applications."
+msgstr "क्षम्यतां, त्रुटिनिवारणं केवलं Python 3.x अनुप्रयोगानाम् कृते समर्थितम् अस्ति ।"
+
+#: debugger/pdblauncher.cpp:86
+#, kde-format
+msgid "Unsupported interpreter"
+msgstr "असमर्थितः व्याख्याकारः"
+
+#: docfilekcm/docfilemanagerwidget.cpp:37
+#, kde-format
+msgid "Failed to find a valid data directory for kdevpythonsupport."
+msgstr "kdevpythonsport कृते वैधदत्तांशनिर्देशिकां अन्वेष्टुं असफलम् ।"
+
+#: docfilekcm/docfilemanagerwidget.cpp:51
+#, kde-format
+msgid "Generate..."
+msgstr "उद्- पद्..."
+
+#: docfilekcm/docfilemanagerwidget.cpp:53
+#, kde-format
+msgid "Import From Editor"
+msgstr "सम्पादकात् आयातम्"
+
+#: docfilekcm/docfilemanagerwidget.cpp:54
+#, kde-format
+msgid ""
+"Copy the contents of the active editor window to a new file in the "
+"documentation directory"
+msgstr ""
+"सक्रियसम्पादकविण्डो इत्यस्य सामग्रीं दस्तावेजनिर्देशिकायां नूतनसञ्चिकायां प्रतिलिपिं कुर्वन्तु"
+
+#: docfilekcm/docfilemanagerwidget.cpp:66
+#, kde-format
+msgid "Open File Manager"
+msgstr "सञ्चिकाप्रबन्धकं उद्घाटयन्तु"
+
+#: docfilekcm/docfilemanagerwidget.cpp:68
+#, kde-format
+msgctxt "Edit selected files"
+msgid "Edit Selected"
+msgstr "सम्पादनं चयनितम्"
+
+#: docfilekcm/docfilemanagerwidget.cpp:70
+#, kde-format
+msgid "Search Paths..."
+msgstr "अन्वेषणमार्गाः..."
+
+#: docfilekcm/docfilemanagerwidget.cpp:101
+#, kde-format
+msgctxt "displays a list of search paths below"
+msgid "Paths searched for documentation by kdev-python (in this order):"
+msgstr "kdev-python द्वारा दस्तावेजीकरणार्थं अन्वेषिताः मार्गाः (अस्मिन् क्रमे):"
+
+#: docfilekcm/docfilemanagerwidget.cpp:141
+#, kde-format
+msgid "Enter a relative target path to copy %1 to:"
+msgstr "%1 इत्यस्य प्रतिलिपिं कर्तुं सापेक्षं लक्ष्यमार्गं प्रविशन्तु:"
+
+#: docfilekcm/docfilemanagerwidget.cpp:145
+#, kde-format
+msgid ""
+"This path must match what you use in Python to import this module. For "
+"example, enter \"numpy/fft.py\" for numpy.fft"
+msgstr ""
+"एषः मार्गः भवता एतत् मॉड्यूल् आयातयितुं Python मध्ये यत् उपयुज्यते तस्य सङ्गतिः भवितुमर्हति । "
+"यथा, numpy.fft कृते \"numpy/fft.py\" इति प्रविष्टं कुर्वन्तु"
+
+#: docfilekcm/docfilemanagerwidget.cpp:147
+#, kde-format
+msgid "After copying, you will be editing the new document."
+msgstr "प्रतिलिपिं कृत्वा भवन्तः नूतनं दस्तावेजं सम्पादयन्ति भविष्यन्ति ।"
+
+#: docfilekcm/docfilemanagerwidget.cpp:166
+#, kde-format
+msgid "Please select at least one file from the list for editing."
+msgstr "सम्पादनार्थं सूचीतः न्यूनातिन्यूनम् एकां सञ्चिकां चिनोतु ।"
+
+#: docfilekcm/docfilewizard.cpp:41
+#, kde-format
+msgid "Configure the Python interpreter to use"
+msgstr "उपयोगाय पायथन् व्याख्याकारं विन्यस्यताम्"
+
+#: docfilekcm/docfilewizard.cpp:44
+#, kde-format
+msgid "Python executable"
+msgstr "पायथन कार्यान्वयनीय"
+
+#: docfilekcm/docfilewizard.cpp:49
+#, kde-format
+msgid "Select a python module to generate documentation for"
+msgstr "दस्तावेजीकरणं जनयितुं python मॉड्यूल् चिनोतु"
+
+#: docfilekcm/docfilewizard.cpp:53
+#, kde-format
+msgctxt "refers to selecting a python module to perform some operation on"
+msgid "Target module (e.g. \"math\")"
+msgstr "लक्ष्यमॉड्यूल (उदा. \"गणित\")"
+
+#: docfilekcm/docfilewizard.cpp:55
+#, kde-format
+msgid "Output filename"
+msgstr "आउटपुट् सञ्चिकानाम"
+
+#: docfilekcm/docfilewizard.cpp:61
+#, kde-format
+msgid "Status and output"
+msgstr "स्थितिः निर्गमः च"
+
+#: docfilekcm/docfilewizard.cpp:63 docfilekcm/docfilewizard.cpp:69
+#, kde-format
+msgid "The process has not been run yet."
+msgstr "प्रक्रिया अद्यापि न चालिता अस्ति।"
+
+#: docfilekcm/docfilewizard.cpp:75
+#, kde-format
+msgid "Script output"
+msgstr "स्क्रिप्ट् आउटपुट्"
+
+#: docfilekcm/docfilewizard.cpp:76
+#, kde-format
+msgid "Results"
+msgstr "परिणामाः"
+
+#: docfilekcm/docfilewizard.cpp:82
+#, kde-format
+msgid "Close"
+msgstr "पिधानं करोतु"
+
+#: docfilekcm/docfilewizard.cpp:84
+#, kde-format
+msgid "Save and close"
+msgstr "रक्षित्वा बन्दं कुर्वन्तु"
+
+#: docfilekcm/docfilewizard.cpp:87
+#, kde-format
+msgid "Generate"
+msgstr "उद्- पद्"
+
+#: docfilekcm/docfilewizard.cpp:138
+#, kde-format
+msgid "Couldn't find the introspect.py script; check your installation!"
+msgstr "introspect.py स्क्रिप्ट् न प्राप्नोत्; स्वस्य संस्थापनं पश्यन्तु!"
+
+#: docfilekcm/docfilewizard.cpp:142
+#, kde-format
+msgid ""
+"Couldn't find a valid kdev-python data directory; check your installation!"
+msgstr "वैधं kdev-python दत्तांशनिर्देशिकां न प्राप्नोत्; स्वस्य संस्थापनं पश्यन्तु!"
+
+#: docfilekcm/docfilewizard.cpp:148
+#, kde-format
+msgid "Invalid output filename"
+msgstr "अमान्यनिर्गमसञ्चिकानाम"
+
+#: docfilekcm/docfilewizard.cpp:188
+#, kde-format
+msgid ""
+"The output file <br/>%1<br/> already exists, do you want to overwrite it?"
+msgstr "आउटपुट् सञ्चिका<br/> %1<br/> पूर्वमेव अस्ति, किं भवन्तः तस्य अधिलेखनं कर्तुम् इच्छन्ति?"
+
+#: docfilekcm/docfilewizard.cpp:203
+#, kde-format
+msgid ""
+"This file contains auto-generated documentation extracted\n"
+"from python run-time information. It is analyzed by KDevelop\n"
+"to offer features such as code-completion and syntax highlighting.\n"
+"If you discover errors in KDevelop's support for this module,\n"
+"you can edit this file to correct the errors, e.g. you can add\n"
+"additional return statements to functions to control the return\n"
+"type to be used for that function by the analyzer.\n"
+"Make sure to keep a copy of your changes so you don't accidentally\n"
+"overwrite them by re-generating the file.\n"
+msgstr ""
+"अस्मिन् सञ्चिकायां स्वतः उत्पन्नं दस्तावेजं निष्कासितम् अस्ति\n"
+"python run-time सूचनातः । अस्य विश्लेषणं KDevelop द्वारा क्रियते\n"
+"कोड-समाप्तिः, वाक्यविन्यास-प्रकाशनं च इत्यादीनि विशेषतानि प्रदातुं ।\n"
+"यदि भवान् अस्य मॉड्यूलस्य समर्थने KDevelop इत्यस्य त्रुटयः आविष्करोति तर्हि\n"
+"दोषान् सम्यक् कर्तुं भवान् एतां सञ्चिकां सम्पादयितुं शक्नोति, उदा. भवन्तः योजयितुं शक्नुवन्ति\n"
+"रिटर्न् नियन्त्रयितुं फंक्शन्स् कृते अतिरिक्तं रिटर्न् स्टेट्मेण्ट्स्\n"
+"तस्य कार्यस्य कृते विश्लेषकेन उपयोक्तव्यः प्रकारः ।\n"
+"भवतः परिवर्तनस्य प्रतिलिपिं सुनिश्चितं कुर्वन्तु येन भवन्तः आकस्मिकतया न भवन्ति\n"
+"सञ्चिकां पुनः जनयित्वा तान् अधिलिखयन्तु ।\n"
+
+#: docfilekcm/kcm_docfiles.cpp:48
+#, kde-format
+msgid "Manage Documentation Files Used by the Python Plugin"
+msgstr "पायथन् प्लगिन् द्वारा उपयुज्यमानाः दस्तावेजीकरणसञ्चिकाः प्रबन्धयन्तु"
+
+#: docfilekcm/kcm_docfiles.cpp:58
+#, kde-format
+msgid "Python Documentation"
+msgstr "पायथन दस्तावेजीकरण"
+
+#: duchain/assistants/missingincludeassistant.cpp:48
+#, kde-format
+msgid "Generate documentation for module \"%1\"..."
+msgstr "\"%1\" मॉड्यूलस्य कृते दस्तावेजीकरणं जनयन्तु..."
+
+#: duchain/declarationbuilder.cpp:705
+#, kde-format
+msgid "Module \"%1\" not found"
+msgstr "\"%1\" मॉड्यूल् न प्राप्तम्"
+
+#: duchain/declarationbuilder.cpp:776
+#, kde-format
+msgid "Declaration for \"%1\" not found in specified module"
+msgstr "निर्दिष्टे मॉड्यूले \"%1\" इत्यस्य घोषणा न प्राप्ता"
+
+#: duchain/declarationbuilder.cpp:1585
+#, kde-format
+msgid ""
+"First argument of class method is not called self or cls, this is deprecated"
+msgstr ""
+"class मेथड् इत्यस्य प्रथमः आर्गुमेण्ट् self अथवा cls इति न उच्यते, एतत् अप्रचलितम् अस्ति"
+
+#: duchain/declarationbuilder.cpp:1605
+#, kde-format
+msgid ""
+"Non-static class method without arguments, must have at least one (self)"
+msgstr "तर्करहितः अस्थिरवर्गविधिः, न्यूनातिन्यूनं एकः (स्वयं) भवितुमर्हति ।"
+
+#: duchain/declarationbuilder.cpp:1766
+#, kde-format
+msgid "Return statement not within function declaration"
+msgstr "फंक्शन् घोषणायाः अन्तः नास्ति इति कथनं प्रत्यागच्छतु"
+
+#: duchain/navigation/declarationnavigationcontext.cpp:67
+#, kde-format
+msgctxt "refers to an unknown type in programming"
+msgid "unknown"
+msgstr "अज्ञात"
+
+#: duchain/navigation/declarationnavigationcontext.cpp:83
+#: duchain/navigation/declarationnavigationcontext.cpp:99
+#: duchain/types/indexedcontainer.cpp:78
+#, kde-format
+msgctxt "as in list of int, set of string"
+msgid "%1 of %2"
+msgstr "%2 इत्यस्य %1"
+
+#: duchain/types/unsuretype.cpp:101
+#, kde-format
+msgctxt "some object that can be called, in programming"
+msgid "<callable>"
+msgstr "<आह्वानीय>"
+
+#: duchain/types/unsuretype.cpp:106
+#, kde-format
+msgctxt "a set with some elements"
+msgid "<iterable>"
+msgstr "<पुनरावर्तनीयम्>"
+
+#: duchain/types/unsuretype.cpp:127
+#, kde-format
+msgctxt "refers to a type (in program code) which is not known"
+msgid "mixed"
+msgstr "मिश्रितम्"
+
+#: duchain/types/unsuretype.cpp:130
+#, kde-format
+msgctxt "refers to a type (in program code) which can have multiple values"
+msgid "unsure (%1)"
+msgstr "अनिश्चित (%1)"
+
+#: duchain/usebuilder.cpp:83
+#, kde-format
+msgid "Undefined variable: %1"
+msgstr "अपरिभाषितः चरः %1"
+
+#: duchain/usebuilder.cpp:130
+#, kde-format
+msgid "Attribute \"%1\" not found on accessed object"
+msgstr "अभिगतवस्तुनि \"%1\" इति विशेषता न प्राप्ता"
+
+#: pep8kcm/kcm_pep8.cpp:63
+#, kde-format
+msgid "Configure Python Style Checking"
+msgstr "पायथन् शैलीपरीक्षणं विन्यस्यताम्"
+
+#: pep8kcm/kcm_pep8.cpp:73
+#, kde-format
+msgid "Python Style Checking"
+msgstr "पायथन शैली जाँच"
+
+#. i18n: ectx: property (title), widget (QGroupBox, enableChecking)
+#: pep8kcm/pep8.ui:29
+#, kde-format
+msgid "Enable Style Checking"
+msgstr "शैलीपरीक्षणं सक्षमं कुर्वन्तु"
+
+#. i18n: ectx: property (placeholderText), widget (QLineEdit, disableErrors)
+#. i18n: ectx: property (placeholderText), widget (QLineEdit, enableErrors)
+#: pep8kcm/pep8.ui:44 pep8kcm/pep8.ui:58
+#, kde-format
+msgid "Comma-separated list of error codes"
+msgstr "त्रुटिसङ्केतानां अल्पविरामेन पृथक्कृता सूची"
+
+#. i18n: ectx: property (text), widget (QLabel, label_2)
+#: pep8kcm/pep8.ui:51
+#, kde-format
+msgid "Enable these errors and warnings:"
+msgstr "एतानि त्रुटयः चेतावनीश्च सक्षमं कुर्वन्तु:"
+
+#. i18n: ectx: property (text), widget (QLabel, label_3)
+#: pep8kcm/pep8.ui:65
+#, kde-format
+msgid "Maximum line length:"
+msgstr "अधिकतम रेखादीर्घता :"
+
+#. i18n: ectx: property (text), widget (QLabel, label)
+#: pep8kcm/pep8.ui:88
+#, kde-format
+msgid "Disable these errors and warnings:"
+msgstr "एतानि त्रुटयः चेतावनीश्च निष्क्रियं कुर्वन्तु:"
+
+#. i18n: ectx: property (text), widget (QLabel, label_4)
+#: pep8kcm/pep8.ui:100
+#, kde-format
+msgid ""
+"The `pycodestyle` Python module must be installed in order to use style "
+"checking."
+msgstr "शैलीपरीक्षणस्य उपयोगाय `pycodestyle` पायथन् मॉड्यूल् संस्थापनीयम् ।"
+
+#. i18n: ectx: property (text), widget (QLabel, label)
+#: projectconfig/projectconfig.ui:19
+#, kde-format
+msgid "Python interpreter:"
+msgstr "पायथन् व्याख्याकारः :"
+
+#. i18n: ectx: property (placeholderText), widget (QLineEdit, pythonInterpreter)
+#: projectconfig/projectconfig.ui:26
+#, kde-format
+msgid "Full path to python interpreter, leave empty for default"
+msgstr "python interpreter इत्यस्य पूर्णमार्गः, पूर्वनिर्धारितार्थं रिक्तं त्यजन्तु"
+
+#: projectconfig/projectconfigpage.cpp:47
+#, kde-format
+msgid "Python Settings"
+msgstr "पायथन सेटिंग्स्"
+
+#: pythonlanguagesupport.cpp:140
+#, kde-format
+msgid "Format source with the autopep8 formatter."
+msgstr "autopep8 स्वरूपकेन स्रोतः प्रारूपयन्तु ।"
+
+#: pythonstylechecking.cpp:107
+#, kde-format
+msgid "PEP8 checker error: %1"
+msgstr "PEP8 परीक्षकदोषः: %1"
+
+#: pythonstylechecking.cpp:209
+#, kde-format
+msgid "The PEP8 syntax checker does not seem to work correctly."
+msgstr "PEP8 वाक्यविन्यासपरीक्षकः सम्यक् कार्यं न करोति इति दृश्यते ।"
diff -pruN 24.12.3-1/po/sk/kdevpython.po 25.08.0-0ubuntu1/po/sk/kdevpython.po
--- 24.12.3-1/po/sk/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/sk/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -1,18 +1,18 @@
 # translation of kdevpython.po to Slovak
-# SPDX-FileCopyrightText: 2012, 2013, 2014, 2015, 2016, 2017, 2024 Roman Paholík <wizzardsk@gmail.com>
+# Roman Paholík <wizzardsk@gmail.com>, 2012, 2013, 2014, 2015, 2016, 2017.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
-"PO-Revision-Date: 2024-11-10 19:31+0100\n"
-"Last-Translator: Roman Paholík <wizzardsk@gmail.com>\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
+"PO-Revision-Date: 2017-09-16 21:11+0100\n"
+"Last-Translator: Roman Paholik <wizzardsk@gmail.com>\n"
 "Language-Team: Slovak <kde-sk@linux.sk>\n"
 "Language: sk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 24.08.3\n"
+"X-Generator: Lokalize 2.0\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
 #, kde-format
@@ -200,32 +200,32 @@ msgstr "Vyžadované moduly:"
 msgid "A comma separated list of modules required for the type"
 msgstr "Čiarkou oddelený zoznam modulov vyžadovaných pre typ"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "Ladený program vygeneroval neošetrenú výnimku."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Teraz môžete preskúmať stav programu po jeho ukončení."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr "Debugger sa ticho zastaví pri spustení ďalšieho príkazu."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Plugin na ladenie Python aplikácií s pdb."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "Prepáčte, ladenie je podporované iba v aplikáciách Python 3.x."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Nepodporovaný interpreter"
@@ -433,11 +433,12 @@ msgid "Declaration for \"%1\" not found
 msgstr "Deklarácia pre \"%1\" nenájdená v určenom module"
 
 #: duchain/declarationbuilder.cpp:1585
-#, kde-format
+#, fuzzy, kde-format
+#| msgid ""
+#| "First argument of class method is not called self, this is deprecated"
 msgid ""
 "First argument of class method is not called self or cls, this is deprecated"
-msgstr ""
-"Prvý argument metódy triedy nie je volaný sám alebo cls, čo je zastaralé"
+msgstr "Prvý argument metódy triedy nie je volaný sám, čo je zastaralé"
 
 #: duchain/declarationbuilder.cpp:1605
 #, kde-format
diff -pruN 24.12.3-1/po/sl/kdevpython.po 25.08.0-0ubuntu1/po/sl/kdevpython.po
--- 24.12.3-1/po/sl/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/sl/kdevpython.po	2025-07-31 22:47:59.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-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2024-10-20 21:49+0200\n"
 "Last-Translator: Matjaž Jeran <matjaz.jeran@amis.net>\n"
 "Language-Team: Slovenian <lugos-slo@lugos.si>\n"
@@ -201,32 +201,32 @@ msgstr "Zahtevani moduli:"
 msgid "A comma separated list of modules required for the type"
 msgstr "Z vejico ločen seznam modulov, ki jih vrsta zahteva"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "Program, ki ga razhroščujete, je povzročil neujeto izjemo."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Sedaj lahko preučite stanje programa, potem ko se konča."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr "Razhroščevalnik se bo potiho zaustavil, ko bo sprožen naslednji ukaz."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Vstavek za razhroščevanje programov za Python s pdb."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "Žal je razhroščevanje podprto le v programih Python 3.x."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Nepodprt tolmač"
diff -pruN 24.12.3-1/po/sv/kdevpython.po 25.08.0-0ubuntu1/po/sv/kdevpython.po
--- 24.12.3-1/po/sv/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/sv/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2024-10-19 16:12+0200\n"
 "Last-Translator: Stefan Asserhäll <stefan.asserhall@gmail.com>\n"
 "Language-Team: Swedish <kde-i18n-doc@kde.org>\n"
@@ -202,32 +202,32 @@ msgstr "Moduler som krävs:"
 msgid "A comma separated list of modules required for the type"
 msgstr "En lista av moduler som krävs för typen åtskilda av kommatecken"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "Programmet som avlusades orsakade ett ohanterat undantag."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Du kan nu inspektera programmets status efter det har avslutats."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr "Avlusaren stoppar utan underrättelse när nästa kommando utförs."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Ett insticksprogram för att avlusa Python-program med PDB."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "Tyvärr är avlusning bara tillgänglig för Python 3.x-program."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Tolken stöds inte"
diff -pruN 24.12.3-1/po/th/kdevpython.po 25.08.0-0ubuntu1/po/th/kdevpython.po
--- 24.12.3-1/po/th/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/th/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2009-01-25 08:34+0700\n"
 "Last-Translator: Narachai Sakorn <narachai@gmail.com>\n"
 "Language-Team: Thai <thai-l10n@googlegroups.com>\n"
@@ -201,32 +201,32 @@ msgstr ""
 msgid "A comma separated list of modules required for the type"
 msgstr ""
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr ""
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr ""
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr ""
diff -pruN 24.12.3-1/po/tr/kdevpython.po 25.08.0-0ubuntu1/po/tr/kdevpython.po
--- 24.12.3-1/po/tr/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/tr/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: extragear-kdevelop-kde4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
-"PO-Revision-Date: 2024-10-18 02:00+0300\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
+"PO-Revision-Date: 2024-11-10 20:24+0300\n"
 "Last-Translator: Emir SARI <emir_sari@icloud.com>\n"
 "Language-Team: Turkish <kde-l10n-tr@kde.org>\n"
 "Language: tr\n"
@@ -17,7 +17,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 24.11.70\n"
+"X-Generator: Lokalize 24.08.2\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -138,12 +138,12 @@ msgstr "işlev"
 #, kde-format
 msgctxt "programming; %1 is a code statement to be added in the editor"
 msgid "Add \"%1\""
-msgstr "\"%1\" Ekle"
+msgstr "“%1” Ekle"
 
 #: codegen/correctionfilegenerator.cpp:58
 #, kde-format
 msgid "Specify type for \"%1\"..."
-msgstr "\"%1\" Türünü Belirt..."
+msgstr "“%1” türünü belirt…"
 
 #: codegen/correctionfilegenerator.cpp:108
 #, kde-format
@@ -203,33 +203,33 @@ msgstr "Gerekli modüller:"
 msgid "A comma separated list of modules required for the type"
 msgstr "Tür için gerekli modüllerin virgülle ayrılmış listesi"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "Hatası ayıklanacak program yakalanamayan bir istisna üretti."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "Programdan çıkıldıktan sonra durumunu kontrol edebilirsiniz."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
-msgstr "Sonraki komut tetiklendiğinde hata ayıklayıcı sessizce duracak."
+msgstr "Sonraki komut tetiklendiğinde hata ayıklayıcısı sessizce duracak."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Pdb ile Python uygulamalarının hatalarını ayıklayan bir eklenti."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 "Üzgünüm, hata ayıklama yalnızca Python 3.x sürümleri için desteklenmektedir."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Desteklenmeyen yorumlayıcı"
@@ -242,7 +242,7 @@ msgstr "kdevpython desteği için geçer
 #: docfilekcm/docfilemanagerwidget.cpp:51
 #, kde-format
 msgid "Generate..."
-msgstr "Oluştur..."
+msgstr "Üret"
 
 #: docfilekcm/docfilemanagerwidget.cpp:53
 #, kde-format
@@ -272,7 +272,7 @@ msgstr "Seçileni Düzenle"
 #: docfilekcm/docfilemanagerwidget.cpp:70
 #, kde-format
 msgid "Search Paths..."
-msgstr "Yolları Ara..."
+msgstr "Yolları Ara…"
 
 #: docfilekcm/docfilemanagerwidget.cpp:101
 #, kde-format
@@ -292,8 +292,8 @@ msgid ""
 "This path must match what you use in Python to import this module. For "
 "example, enter \"numpy/fft.py\" for numpy.fft"
 msgstr ""
-"Bu yol, bu modülü içe aktarmak için Python 'da kullandığınız yol ile "
-"eşleşmek zorundadır; örneğin, numpy.ftt için \"numpy/fft.py\" girin"
+"Bu yol, bu modülü içe aktarmak için Python’da kullandığınız yol ile eşleşmek "
+"zorundadır; örneğin, numpy.ftt için “numpy/fft.py” girin"
 
 #: docfilekcm/docfilemanagerwidget.cpp:147
 #, kde-format
@@ -324,7 +324,7 @@ msgstr "Belgelendirmesi oluşturulacak b
 #, kde-format
 msgctxt "refers to selecting a python module to perform some operation on"
 msgid "Target module (e.g. \"math\")"
-msgstr "Hedef modül (\"math\" gibi)"
+msgstr "Hedef modül (“math” gibi)"
 
 #: docfilekcm/docfilewizard.cpp:55
 #, kde-format
@@ -376,7 +376,7 @@ msgstr "introspect.py betiği bulunamad
 msgid ""
 "Couldn't find a valid kdev-python data directory; check your installation!"
 msgstr ""
-"Geçerli bir kdev-python veri dizini bulunamadı; kurulumunuzu kontrol edin!"
+"Geçerli bir kdev-python veri dizini bulunamadı; kurulumunuzu denetleyin!"
 
 #: docfilekcm/docfilewizard.cpp:148
 #, kde-format
@@ -427,17 +427,17 @@ msgstr "Python Belgelendirmesi"
 #: duchain/assistants/missingincludeassistant.cpp:48
 #, kde-format
 msgid "Generate documentation for module \"%1\"..."
-msgstr "\"%1\" modülü için belgelendirme oluştur ..."
+msgstr "“%1” modülü için belgelendirme oluştur…"
 
 #: duchain/declarationbuilder.cpp:705
 #, kde-format
 msgid "Module \"%1\" not found"
-msgstr "\"%1\" modülü bulunamadı"
+msgstr "“%1” modülü bulunamadı"
 
 #: duchain/declarationbuilder.cpp:776
 #, kde-format
 msgid "Declaration for \"%1\" not found in specified module"
-msgstr "Belirtilen modülde \"%1\" bildirimi bulunamadı"
+msgstr "Belirtilen modülde “%1” beyanı bulunamadı"
 
 #: duchain/declarationbuilder.cpp:1585
 #, kde-format
@@ -456,7 +456,7 @@ msgstr ""
 #: duchain/declarationbuilder.cpp:1766
 #, kde-format
 msgid "Return statement not within function declaration"
-msgstr "Dönüş ifadesi işlev bildirimi içinde değil"
+msgstr "Dönüş ifadesi işlev beyanı içinde değil"
 
 #: duchain/navigation/declarationnavigationcontext.cpp:67
 #, kde-format
@@ -504,7 +504,7 @@ msgstr "Tanımlanmamış değişken: %1"
 #: duchain/usebuilder.cpp:130
 #, kde-format
 msgid "Attribute \"%1\" not found on accessed object"
-msgstr "\"%1\" özniteliği erişilen nesnede bulunamadı"
+msgstr "“%1” özniteliği erişilen nesnede bulunamadı"
 
 #: pep8kcm/kcm_pep8.cpp:63
 #, kde-format
@@ -539,7 +539,7 @@ msgstr "Şu hataları ve uyarıları etk
 #: pep8kcm/pep8.ui:65
 #, kde-format
 msgid "Maximum line length:"
-msgstr "Azami satır uzunluğu:"
+msgstr "En çok satır uzunluğu:"
 
 #. i18n: ectx: property (text), widget (QLabel, label)
 #: pep8kcm/pep8.ui:88
@@ -561,7 +561,7 @@ msgstr ""
 #: projectconfig/projectconfig.ui:19
 #, kde-format
 msgid "Python interpreter:"
-msgstr "Python yorumlayıcı:"
+msgstr "Python yorumlayıcısı:"
 
 #. i18n: ectx: property (placeholderText), widget (QLineEdit, pythonInterpreter)
 #: projectconfig/projectconfig.ui:26
@@ -582,7 +582,7 @@ msgstr "Kaynağı autopep8 biçimlendiri
 #: pythonstylechecking.cpp:107
 #, kde-format
 msgid "PEP8 checker error: %1"
-msgstr "PEP8 kontrol hatası: %1"
+msgstr "PEP8 denetleyicisi hatası: %1"
 
 #: pythonstylechecking.cpp:209
 #, kde-format
diff -pruN 24.12.3-1/po/ug/kdevpython.po 25.08.0-0ubuntu1/po/ug/kdevpython.po
--- 24.12.3-1/po/ug/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/ug/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2013-09-08 07:04+0900\n"
 "Last-Translator: Gheyret Kenji <gheyret@gmail.com>\n"
 "Language-Team: Uyghur Computer Science Association <UKIJ@yahoogroups.com>\n"
@@ -200,32 +200,32 @@ msgstr ""
 msgid "A comma separated list of modules required for the type"
 msgstr ""
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr ""
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr ""
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr ""
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr ""
diff -pruN 24.12.3-1/po/uk/kdevpython.po 25.08.0-0ubuntu1/po/uk/kdevpython.po
--- 24.12.3-1/po/uk/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/uk/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2024-10-17 15:20+0300\n"
 "Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
 "Language-Team: Ukrainian <trans-uk@lists.fedoraproject.org>\n"
@@ -206,35 +206,35 @@ msgid "A comma separated list of modules
 msgstr ""
 "Список відокремлених комами записів модулів, потрібних для роботи з типом."
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "Під час діагностичного запуску програми сталося невідоме виключення."
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr ""
 "Тепер можна ознайомитися зі станом програми після завершення її роботи."
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr ""
 "Інструмент діагностики зупинить роботу без повідомлень, коли буде віддано "
 "наступну програму."
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "Додаток для діагностування програм мовою Python за допомогою pdb."
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "Вибачте, діагностування передбачено лише для програм Python 3.x."
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "Непідтримуваний інтерпретатор"
diff -pruN 24.12.3-1/po/zh_CN/kdevpython.po 25.08.0-0ubuntu1/po/zh_CN/kdevpython.po
--- 24.12.3-1/po/zh_CN/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/zh_CN/kdevpython.po	2025-07-31 22:47:59.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-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2024-04-23 19:30\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
@@ -200,32 +200,32 @@ msgstr "需要模块："
 msgid "A comma separated list of modules required for the type"
 msgstr "类型所需模块的逗号分隔列表"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "正在调试的程序引发了一个未被捕获的异常。"
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "您现在可以在退出后检查程序的状态。"
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr "当下一个命令被触发时，调试器将静默停止。"
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "用 pdb 调试 Python 应用程序的插件。"
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "抱歉，只有Python 3.x应用程序支持调试。"
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "不支持的解释器"
@@ -429,7 +429,7 @@ msgstr "在指定模块中找不到 %1 
 #, kde-format
 msgid ""
 "First argument of class method is not called self or cls, this is deprecated"
-msgstr "类方法的第一个参数既不叫 self 也不叫 cls ，这种做法已不推荐"
+msgstr "类方法的第一个参数未命名为 self 或 cls，此做法已被弃用。"
 
 #: duchain/declarationbuilder.cpp:1605
 #, kde-format
diff -pruN 24.12.3-1/po/zh_TW/kdevpython.po 25.08.0-0ubuntu1/po/zh_TW/kdevpython.po
--- 24.12.3-1/po/zh_TW/kdevpython.po	2025-02-27 20:51:05.000000000 +0000
+++ 25.08.0-0ubuntu1/po/zh_TW/kdevpython.po	2025-07-31 22:47:59.000000000 +0000
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: kdevpython\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n"
-"POT-Creation-Date: 2024-10-17 00:39+0000\n"
+"POT-Creation-Date: 2025-05-27 00:40+0000\n"
 "PO-Revision-Date: 2024-10-20 00:33+0900\n"
 "Last-Translator: Kisaragi Hiu <mail@kisaragi-hiu.com>\n"
 "Language-Team: Traditional Chinese <zh-l10n@lists.slat.org>\n"
@@ -202,32 +202,32 @@ msgstr "需要的模組："
 msgid "A comma separated list of modules required for the type"
 msgstr "此型態需要的模組清單，以逗號分隔"
 
-#: debugger/debugsession.cpp:167
+#: debugger/debugsession.cpp:156
 #, kde-format
 msgid "The program being debugged raised an uncaught exception."
 msgstr "除錯中的程式發出了未捕捉到的例外。"
 
-#: debugger/debugsession.cpp:168
+#: debugger/debugsession.cpp:157
 #, kde-format
 msgid "You can now inspect the status of the program after it exited."
 msgstr "您現在可以在程式離開後檢查其狀態。"
 
-#: debugger/debugsession.cpp:169
+#: debugger/debugsession.cpp:158
 #, kde-format
 msgid "The debugger will silently stop when the next command is triggered."
 msgstr "在下個指令觸發後，除錯器會無聲地停止。"
 
-#: debugger/pdblauncher.cpp:45
+#: debugger/pdblauncher.cpp:44
 #, kde-format
 msgid "A plugin to debug Python applications with pdb."
 msgstr "用 pdb 除錯 Python 應用程式的外掛程式。"
 
-#: debugger/pdblauncher.cpp:77
+#: debugger/pdblauncher.cpp:85
 #, kde-format
 msgid "Sorry, debugging is only supported for Python 3.x applications."
 msgstr "抱歉，除錯器只支援除錯 Python 3.x 的應用程式。"
 
-#: debugger/pdblauncher.cpp:78
+#: debugger/pdblauncher.cpp:86
 #, kde-format
 msgid "Unsupported interpreter"
 msgstr "未支援的直譯器"
