Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package lxqt-wallet for openSUSE:Factory 
checked in at 2026-08-28 19:48:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/lxqt-wallet (Old)
 and      /work/SRC/openSUSE:Factory/.lxqt-wallet.new.1265 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "lxqt-wallet"

Fri Aug 28 19:48:28 2026 rev:5 rq:1374158 version:4.1.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/lxqt-wallet/lxqt-wallet.changes  2024-11-11 
13:46:01.841584347 +0100
+++ /work/SRC/openSUSE:Factory/.lxqt-wallet.new.1265/lxqt-wallet.changes        
2026-08-28 19:48:55.966228077 +0200
@@ -1,0 +2,6 @@
+Fri Aug 28 04:50:40 UTC 2026 - Michael Vetter <[email protected]>
+
+- Update to 4.1.0:
+  * Make the library linkable when used with a hardened compiler
+
+-------------------------------------------------------------------

Old:
----
  lxqt-wallet-4.0.2.tar.xz
  lxqt-wallet-4.0.2.tar.xz.asc

New:
----
  lxqt-wallet-4.1.0.tar.xz
  lxqt-wallet-4.1.0.tar.xz.asc

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

Other differences:
------------------
++++++ lxqt-wallet.spec ++++++
--- /var/tmp/diff_new_pack.XHJJGC/_old  2026-08-28 19:48:57.683288095 +0200
+++ /var/tmp/diff_new_pack.XHJJGC/_new  2026-08-28 19:48:57.704288829 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package lxqt-wallet
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2026 SUSE LLC and contributors
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -21,7 +21,7 @@
 %endif
 %define c_lib   lib%{name}6_0_0
 Name:           lxqt-wallet
-Version:        4.0.2
+Version:        4.1.0
 Release:        0
 Summary:        Secure storage of information for LXQt
 License:        BSD-2-Clause

++++++ lxqt-wallet-4.0.2.tar.xz -> lxqt-wallet-4.1.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-wallet-4.0.2/CMakeLists.txt 
new/lxqt-wallet-4.1.0/CMakeLists.txt
--- old/lxqt-wallet-4.0.2/CMakeLists.txt        2024-11-01 20:46:16.000000000 
+0100
+++ new/lxqt-wallet-4.1.0/CMakeLists.txt        2026-08-27 12:22:51.000000000 
+0200
@@ -3,7 +3,7 @@
 project(lxqt_wallet)
 
 set(LIBRARY_VERSION "6.0.0")
-set(RELEASE_VERSION "4.0.2")
+set(RELEASE_VERSION "4.1.0")
 
 add_definitions(-Wextra -Wall -pedantic)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-wallet-4.0.2/README.md 
new/lxqt-wallet-4.1.0/README.md
--- old/lxqt-wallet-4.0.2/README.md     2022-08-04 13:53:39.000000000 +0200
+++ new/lxqt-wallet-4.1.0/README.md     2026-08-27 12:08:39.000000000 +0200
@@ -26,7 +26,7 @@
 **1. Create an instance of the backend you want to use. A list of supported 
backends is <a 
href="https://github.com/mhogomchungu/lxqt_wallet/blob/777d85735a1149c143a4d8933194d24fa5445174/frontend/lxqt_wallet.h#L51";>here</a>.
 Call <a 
href="https://github.com/mhogomchungu/lxqt_wallet/blob/777d85735a1149c143a4d8933194d24fa5445174/frontend/lxqt_wallet.h#L61";>this</a>
 method first to make sure the backend you want to use was enabled at compile 
time. User of this API is responsible for the returned object and must delete 
it when done with it.**
 
 ```
-LXQt::Wallet::Wallet * m_wallet = 
LXQt::Wallet::getWalletBackend(LXQt::Wallet::BackEnd::internal);
+std::unique_ptr<LXQt::Wallet::Wallet> m_wallet = 
LXQt::Wallet::getWalletBackend(LXQt::Wallet::BackEnd::internal);
 ```
 **2. Set parent widget. This step is necessary if an internal backend is used. 
Also call setImage() to set a custom image when when trying to unlock an 
internal wallet.**
 ```
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-wallet-4.0.2/changelog 
new/lxqt-wallet-4.1.0/changelog
--- old/lxqt-wallet-4.0.2/changelog     2024-11-01 20:51:36.000000000 +0100
+++ new/lxqt-wallet-4.1.0/changelog     2026-08-27 12:50:45.000000000 +0200
@@ -19,3 +19,5 @@
        - Fix a build issue.
 - version 4.0.2
        - Default to use xdg paths when they are set.
+- version 4.1.0
+       - Make the library linkable when used with hardened compiler.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-wallet-4.0.2/frontend/CMakeLists.txt 
new/lxqt-wallet-4.1.0/frontend/CMakeLists.txt
--- old/lxqt-wallet-4.0.2/frontend/CMakeLists.txt       2024-10-30 
10:28:55.000000000 +0100
+++ new/lxqt-wallet-4.1.0/frontend/CMakeLists.txt       2026-08-27 
12:08:39.000000000 +0200
@@ -132,6 +132,7 @@
 endif()
 
 set_target_properties(lxqt-wallet PROPERTIES COMPILE_FLAGS 
"-D_FILE_OFFSET_BITS=64 -Wextra -Wall -s -fPIC -pedantic ")
+target_compile_definitions(lxqt-wallet PRIVATE LXQT_WALLET_BUILDING_LIBRARY)
 set_target_properties(lxqt-wallet PROPERTIES SOVERSION "${LIBRARY_VERSION}")
 
 set_target_properties(lxqt-wallet PROPERTIES OUTPUT_NAME lxqt-wallet)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-wallet-4.0.2/frontend/lxqt_kwallet-dbus.cpp 
new/lxqt-wallet-4.1.0/frontend/lxqt_kwallet-dbus.cpp
--- old/lxqt-wallet-4.0.2/frontend/lxqt_kwallet-dbus.cpp        2022-08-04 
14:06:39.000000000 +0200
+++ new/lxqt-wallet-4.1.0/frontend/lxqt_kwallet-dbus.cpp        2026-08-27 
12:22:28.000000000 +0200
@@ -31,8 +31,8 @@
 #include "lxqt_kwallet-dbus.h"
 #include "task.h"
 
-static auto _service   = "org.kde.kwalletd5";
-static auto _path      = "/modules/kwalletd5";
+static auto _service   = "org.kde.kwalletd6";
+static auto _path      = "/modules/kwalletd6";
 static auto _interface = "org.kde.KWallet";
 
 LXQt::Wallet::kwallet_dbus::kwallet_dbus() : m_dbus(_service, _path, 
_interface)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-wallet-4.0.2/frontend/lxqt_wallet.h 
new/lxqt-wallet-4.1.0/frontend/lxqt_wallet.h
--- old/lxqt-wallet-4.0.2/frontend/lxqt_wallet.h        2022-08-04 
14:03:03.000000000 +0200
+++ new/lxqt-wallet-4.1.0/frontend/lxqt_wallet.h        2026-08-27 
12:08:39.000000000 +0200
@@ -31,6 +31,13 @@
 #ifndef LXQT_WALLET_INTERFACE_H
 #define LXQT_WALLET_INTERFACE_H
 
+#include <QtGlobal>
+#if defined(LXQT_WALLET_BUILDING_LIBRARY)
+#define LXQT_WALLET_API Q_DECL_EXPORT
+#else
+#define LXQT_WALLET_API Q_DECL_IMPORT
+#endif
+
 #include <QString>
 #include <QStringList>
 #include <QObject>
@@ -59,20 +66,20 @@
 /*
  * Check if there is a support for a backend and return true if the back end 
is supported.
  */
-Q_DECL_EXPORT bool backEndIsSupported(LXQt::Wallet::BackEnd);
+LXQT_WALLET_API bool backEndIsSupported(LXQt::Wallet::BackEnd);
 
 /*
  * Delete a wallet.
  * KWallet backend does not use the applicationName argument.
  */
-Q_DECL_EXPORT bool deleteWallet(LXQt::Wallet::BackEnd,
+LXQT_WALLET_API bool deleteWallet(LXQt::Wallet::BackEnd,
                                 const QString &walletName,
                                 const QString &applicationName = QString());
 
 /*
  * Check if a particular wallet exists.
  */
-Q_DECL_EXPORT bool walletExists(LXQt::Wallet::BackEnd,
+LXQT_WALLET_API bool walletExists(LXQt::Wallet::BackEnd,
                                 const QString &walletName,
                                 const QString &applicationName = QString());
 
@@ -82,18 +89,18 @@
  *
  * nullptr is returned if there is no support for requested backend.
  */
-Q_DECL_EXPORT std::unique_ptr<LXQt::Wallet::Wallet> 
getWalletBackend(LXQt::Wallet::BackEnd);
+LXQT_WALLET_API std::unique_ptr<LXQt::Wallet::Wallet> 
getWalletBackend(LXQt::Wallet::BackEnd);
 
 /*
  * Return a list of all wallets.
  * Returned value is undefined if the backend is not supported.
  */
-Q_DECL_EXPORT QStringList walletList(LXQt::Wallet::BackEnd);
+LXQT_WALLET_API QStringList walletList(LXQt::Wallet::BackEnd);
 
 /*
  * Get a list of supported languages.
  */
-Q_DECL_EXPORT QStringList translations();
+LXQT_WALLET_API QStringList translations();
 
 /*
  * Set language of texts on GUI elements.
@@ -101,13 +108,13 @@
  *
  * Setting a language will make a difference only with an internal backend.
  */
-Q_DECL_EXPORT void setTranslationLanguage(const QString &language);
+LXQT_WALLET_API void setTranslationLanguage(const QString &language);
 
 /*
  * Below class is the interface that implements various backends.
  * See example at the end of this header file to see an example of how to use 
the interface.
  */
-class Q_DECL_EXPORT Wallet : public QWidget
+class LXQT_WALLET_API Wallet : public QWidget
 {
 public:
     Wallet();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-wallet-4.0.2/translations/lxqt-wallet_de.ts 
new/lxqt-wallet-4.1.0/translations/lxqt-wallet_de.ts
--- old/lxqt-wallet-4.0.2/translations/lxqt-wallet_de.ts        2022-08-04 
13:53:39.000000000 +0200
+++ new/lxqt-wallet-4.1.0/translations/lxqt-wallet_de.ts        2026-08-27 
12:08:39.000000000 +0200
@@ -53,12 +53,12 @@
     <message>
         <location filename="../frontend/changepassworddialog.ui" line="42"/>
         <source>C&amp;hange</source>
-        <translation>&amp;ändern</translation>
+        <translation>&amp;Ändern</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.ui" line="55"/>
         <source>&amp;Ok</source>
-        <translation>&amp;Ok</translation>
+        <translation>&amp;OK</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.ui" line="126"/>
@@ -165,7 +165,7 @@
     <message>
         <location filename="../frontend/password_dialog.ui" line="167"/>
         <source>&amp;Ok</source>
-        <translation>&amp;Ok</translation>
+        <translation>&amp;OK</translation>
     </message>
     <message>
         <location filename="../frontend/password_dialog.ui" line="154"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-wallet-4.0.2/translations/lxqt-wallet_en_GB.ts 
new/lxqt-wallet-4.1.0/translations/lxqt-wallet_en_GB.ts
--- old/lxqt-wallet-4.0.2/translations/lxqt-wallet_en_GB.ts     1970-01-01 
01:00:00.000000000 +0100
+++ new/lxqt-wallet-4.1.0/translations/lxqt-wallet_en_GB.ts     2026-08-27 
12:08:39.000000000 +0200
@@ -0,0 +1,159 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.1" language="en_GB">
+<context>
+    <name>LXQt::Wallet::changePassWordDialog</name>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="108"/>
+        <source>Create a new wallet</source>
+        <translation>Create a new wallet</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="110"/>
+        <source>Create</source>
+        <translation>Create</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="138"/>
+        <location filename="../frontend/changepassworddialog.cpp" line="280"/>
+        <source>Passwords do not match</source>
+        <translation>Passwords do not match</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="221"/>
+        <source>Wallet password could not be changed</source>
+        <translation>Wallet password could not be changed</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="232"/>
+        <source>Wallet could not be opened with the presented key</source>
+        <translation>Wallet could not be opened with the presented 
key</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="244"/>
+        <source>New passwords do not match</source>
+        <translation>New passwords do not match</translation>
+    </message>
+</context>
+<context>
+    <name>LXQt::Wallet::password_dialog</name>
+    <message>
+        <location filename="../frontend/password_dialog.cpp" line="72"/>
+        <source>Wallet could not be opened with the presented key</source>
+        <translation>Wallet could not be opened with the presented 
key</translation>
+    </message>
+</context>
+<context>
+    <name>changePassWordDialog</name>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="14"/>
+        <source>Change Wallet&apos;s Password</source>
+        <translation>Change Wallet&apos;s Password</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="42"/>
+        <source>C&amp;hange</source>
+        <translation>C&amp;hange</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="55"/>
+        <source>&amp;Ok</source>
+        <translation>&amp;Ok</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="126"/>
+        <source>Enter Current Password Below.</source>
+        <translation>Enter Current Password Below.</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="145"/>
+        <source>Enter New Password Below.</source>
+        <translation>Enter New Password Below.</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="164"/>
+        <source>Re Enter New Password Below.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="183"/>
+        <source>&amp;Cancel</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="196"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;An application 
&apos;&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; has 
made a request for a password of its wallet &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos; to be changed&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; 
margin-left:0px; margin-right:0px; -qt-block-indent:0; 
text-indent:0px;&quot;&gt;&lt;br 
/&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="214"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Enter password 
information below to create a new wallet &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; for application &apos;&lt;span 
style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>password_dialog</name>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="14"/>
+        <source>lxqt wallet service</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="42"/>
+        <source>The application &apos;%1&apos; has requested to open the 
wallet &apos;%2&apos;.Enter the password below for this wallet to unlock 
it</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="74"/>
+        <source>Wallet &apos;%1&apos; does not exist,do you want to create 
it?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="90"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Wallet &lt;span 
style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; does not 
exist, do you want to create it?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="107"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;An application 
&lt;span style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; has 
requested to open a wallet&lt;span style=&quot; font-weight:600;&quot;&gt; 
&apos;%2&apos;&lt;/span&gt;. Enter the password below for this wallet to unlock 
it.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="124"/>
+        <source>&amp;Unlock</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="141"/>
+        <source>&amp;Cancel</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="167"/>
+        <source>&amp;Ok</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="154"/>
+        <source>ok</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+</TS>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-wallet-4.0.2/translations/lxqt-wallet_eo.ts 
new/lxqt-wallet-4.1.0/translations/lxqt-wallet_eo.ts
--- old/lxqt-wallet-4.0.2/translations/lxqt-wallet_eo.ts        2022-08-04 
13:53:39.000000000 +0200
+++ new/lxqt-wallet-4.1.0/translations/lxqt-wallet_eo.ts        2026-08-27 
12:08:39.000000000 +0200
@@ -6,23 +6,23 @@
     <message>
         <location filename="../frontend/changepassworddialog.cpp" line="108"/>
         <source>Create a new wallet</source>
-        <translation type="unfinished"></translation>
+        <translation>Krei novan monujon</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.cpp" line="110"/>
         <source>Create</source>
-        <translation type="unfinished"></translation>
+        <translation>Krei</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.cpp" line="138"/>
         <location filename="../frontend/changepassworddialog.cpp" line="280"/>
         <source>Passwords do not match</source>
-        <translation type="unfinished"></translation>
+        <translation>Pasvortoj ne kongruas</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.cpp" line="221"/>
         <source>Wallet password could not be changed</source>
-        <translation type="unfinished"></translation>
+        <translation>Monuja pasvorto ne povus esti ŝangita</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.cpp" line="232"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-wallet-4.0.2/translations/lxqt-wallet_ka.ts 
new/lxqt-wallet-4.1.0/translations/lxqt-wallet_ka.ts
--- old/lxqt-wallet-4.0.2/translations/lxqt-wallet_ka.ts        1970-01-01 
01:00:00.000000000 +0100
+++ new/lxqt-wallet-4.1.0/translations/lxqt-wallet_ka.ts        2026-08-27 
12:08:39.000000000 +0200
@@ -0,0 +1,176 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.1" language="ka">
+<context>
+    <name>LXQt::Wallet::changePassWordDialog</name>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="108"/>
+        <source>Create a new wallet</source>
+        <translation>ახალი საფულის შექმნა</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="110"/>
+        <source>Create</source>
+        <translation>შექმნა</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="138"/>
+        <location filename="../frontend/changepassworddialog.cpp" line="280"/>
+        <source>Passwords do not match</source>
+        <translation>პაროლები არ ემთხვევა</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="221"/>
+        <source>Wallet password could not be changed</source>
+        <translation>საფულის პაროლის შეცვლა შეუძლებელია</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="232"/>
+        <source>Wallet could not be opened with the presented key</source>
+        <translation>ამ გასაღებით საფულეს ვერ გახსნით</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="244"/>
+        <source>New passwords do not match</source>
+        <translation>ახალი პაროლები არ ემთხვევა</translation>
+    </message>
+</context>
+<context>
+    <name>LXQt::Wallet::password_dialog</name>
+    <message>
+        <location filename="../frontend/password_dialog.cpp" line="72"/>
+        <source>Wallet could not be opened with the presented key</source>
+        <translation>ამ გასაღებით საფულეს ვერ გახსნით</translation>
+    </message>
+</context>
+<context>
+    <name>changePassWordDialog</name>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="14"/>
+        <source>Change Wallet&apos;s Password</source>
+        <translation>საფულის პაროლის შეცვლა</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="42"/>
+        <source>C&amp;hange</source>
+        <translation>შე&amp;ცვლა</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="55"/>
+        <source>&amp;Ok</source>
+        <translation>&amp;დიახ</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="126"/>
+        <source>Enter Current Password Below.</source>
+        <translation>შეიყვანეთ ქვემოთ მიმდინარე პაროლი.</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="145"/>
+        <source>Enter New Password Below.</source>
+        <translation>შეიყვანეთ ქვემოთ ახალი პაროლი.</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="164"/>
+        <source>Re Enter New Password Below.</source>
+        <translation>შეიყვანეთ ქვემოთ ახალი პაროლი კიდევ ერთხელ.</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="183"/>
+        <source>&amp;Cancel</source>
+        <translation>&amp;გაუქმება</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="196"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;An application 
&apos;&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; has 
made a request for a password of its wallet &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos; to be changed&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; 
margin-left:0px; margin-right:0px; -qt-block-indent:0; 
text-indent:0px;&quot;&gt;&lt;br 
/&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 
4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;აპლიკაციამ 
&apos;&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; 
მოითხოვა, რომ პაროლი თავისი საფულისთვის &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos; შეცვალოს&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; 
margin-left:0px; margin-right:0px; -qt-block-indent:0; 
text-indent:0px;&quot;&gt;&lt;br 
/&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="214"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Enter password 
information below to create a new wallet &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; for application &apos;&lt;span 
style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 
4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;შეიყვანეთ 
პაროლის ინფორმაცია ქვემოთ, ახალი საფულის შესაქმნელად &apos;&lt;span 
style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; აპლიკაციისთვის 
&apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+    </message>
+</context>
+<context>
+    <name>password_dialog</name>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="14"/>
+        <source>lxqt wallet service</source>
+        <translation>lxqt-ის საფულის სერვისი</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="42"/>
+        <source>The application &apos;%1&apos; has requested to open the 
wallet &apos;%2&apos;.Enter the password below for this wallet to unlock 
it</source>
+        <translation>აპლიკაციამ &apos;%1&apos; მოითხოვა, გაიხსნას საქაღალდე 
&apos;%2&apos;. შეიყვანეთ საფულის პაროლი ქვემოთ მისი 
განბლოკვისთვის</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="74"/>
+        <source>Wallet &apos;%1&apos; does not exist,do you want to create 
it?</source>
+        <translation>საფულე &apos;%1&apos; არ არსებობს. გნებავთ, შექმნათ 
ის?</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="90"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Wallet &lt;span 
style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; does not 
exist, do you want to create it?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 
4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;საფულე &lt;span 
style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; არ არსებობს. 
გნებავთ, შექმნათ ის?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="107"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;An application 
&lt;span style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; has 
requested to open a wallet&lt;span style=&quot; font-weight:600;&quot;&gt; 
&apos;%2&apos;&lt;/span&gt;. Enter the password below for this wallet to unlock 
it.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 
4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;აპლიკაციამ 
&lt;span style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; 
მოითხოვა გახნა საფულისთვის &lt;span style=&quot; font-weight:600;&quot;&gt; 
&apos;%2&apos;&lt;/span&gt;. შეიყვანეთ ქვემოთ პაროლი მისი 
განბლოკვისთვის.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="124"/>
+        <source>&amp;Unlock</source>
+        <translation>&amp;განბლოკვა</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="141"/>
+        <source>&amp;Cancel</source>
+        <translation>გა&amp;უქმება</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="167"/>
+        <source>&amp;Ok</source>
+        <translation>&amp;დიახ</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="154"/>
+        <source>ok</source>
+        <translation>დიახ</translation>
+    </message>
+</context>
+</TS>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-wallet-4.0.2/translations/lxqt-wallet_kab.ts 
new/lxqt-wallet-4.1.0/translations/lxqt-wallet_kab.ts
--- old/lxqt-wallet-4.0.2/translations/lxqt-wallet_kab.ts       1970-01-01 
01:00:00.000000000 +0100
+++ new/lxqt-wallet-4.1.0/translations/lxqt-wallet_kab.ts       2026-08-27 
12:08:39.000000000 +0200
@@ -0,0 +1,159 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.1" language="kab">
+<context>
+    <name>LXQt::Wallet::changePassWordDialog</name>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="108"/>
+        <source>Create a new wallet</source>
+        <translation>Rnu taxriḍt tamaynut</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="110"/>
+        <source>Create</source>
+        <translation>Snulfu-d</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="138"/>
+        <location filename="../frontend/changepassworddialog.cpp" line="280"/>
+        <source>Passwords do not match</source>
+        <translation>Awalen uffiren ur mwatan ara</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="221"/>
+        <source>Wallet password could not be changed</source>
+        <translation>Awal uffir n texriḍt ulamek ara yettwabeddel</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="232"/>
+        <source>Wallet could not be opened with the presented key</source>
+        <translation>Taxriḍt ur tezmir ara ad d-teldi s tsarut i 
d-yettwamudden</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="244"/>
+        <source>New passwords do not match</source>
+        <translation>Awalen uffiren imaynuten ur mwatan ara</translation>
+    </message>
+</context>
+<context>
+    <name>LXQt::Wallet::password_dialog</name>
+    <message>
+        <location filename="../frontend/password_dialog.cpp" line="72"/>
+        <source>Wallet could not be opened with the presented key</source>
+        <translation>Taxriḍt ur tezmir ara ad d-teldi s tsarut i 
d-yettwamudden</translation>
+    </message>
+</context>
+<context>
+    <name>changePassWordDialog</name>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="14"/>
+        <source>Change Wallet&apos;s Password</source>
+        <translation>Snifel awal uffir n texriḍt</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="42"/>
+        <source>C&amp;hange</source>
+        <translation>&amp;Snifel</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="55"/>
+        <source>&amp;Ok</source>
+        <translation>&amp;Ih</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="126"/>
+        <source>Enter Current Password Below.</source>
+        <translation>Sekcem awal uffir amiran ddaw-a.</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="145"/>
+        <source>Enter New Password Below.</source>
+        <translation>Sekcem awal uffir amaynut ddaw-a.</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="164"/>
+        <source>Re Enter New Password Below.</source>
+        <translation>Sekcem tikkelt-nniḍen awal uffir amaynut 
ddaw-a.</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="183"/>
+        <source>&amp;Cancel</source>
+        <translation>Se&amp;fsex</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="196"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;An application 
&apos;&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; has 
made a request for a password of its wallet &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos; to be changed&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; 
margin-left:0px; margin-right:0px; -qt-block-indent:0; 
text-indent:0px;&quot;&gt;&lt;br 
/&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="214"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Enter password 
information below to create a new wallet &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; for application &apos;&lt;span 
style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>password_dialog</name>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="14"/>
+        <source>lxqt wallet service</source>
+        <translation>ameẓlu n texriḍt lxqt</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="42"/>
+        <source>The application &apos;%1&apos; has requested to open the 
wallet &apos;%2&apos;.Enter the password below for this wallet to unlock 
it</source>
+        <translation>Asnas &apos;%1&apos; yessuter ad yeldi taxriḍt 
&apos;%2&apos;. Sekcem awal uffir ddaw-agi i texriḍt-a iwakken ad t-tekkseḍ 
asekkeṛ</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="74"/>
+        <source>Wallet &apos;%1&apos; does not exist,do you want to create 
it?</source>
+        <translation>Ulac taxriḍt &apos;%1&apos;, tebɣiḍ ad 
tt-id-tesnulfuḍ?</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="90"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Wallet &lt;span 
style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; does not 
exist, do you want to create it?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="107"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;An application 
&lt;span style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; has 
requested to open a wallet&lt;span style=&quot; font-weight:600;&quot;&gt; 
&apos;%2&apos;&lt;/span&gt;. Enter the password below for this wallet to unlock 
it.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="124"/>
+        <source>&amp;Unlock</source>
+        <translation>&amp;Kkes asekkeṛ</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="141"/>
+        <source>&amp;Cancel</source>
+        <translation>Se&amp;fsex</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="167"/>
+        <source>&amp;Ok</source>
+        <translation>&amp;Ih</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="154"/>
+        <source>ok</source>
+        <translation>ih</translation>
+    </message>
+</context>
+</TS>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-wallet-4.0.2/translations/lxqt-wallet_kk.ts 
new/lxqt-wallet-4.1.0/translations/lxqt-wallet_kk.ts
--- old/lxqt-wallet-4.0.2/translations/lxqt-wallet_kk.ts        1970-01-01 
01:00:00.000000000 +0100
+++ new/lxqt-wallet-4.1.0/translations/lxqt-wallet_kk.ts        2026-08-27 
12:08:39.000000000 +0200
@@ -0,0 +1,176 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.1" language="kk">
+<context>
+    <name>LXQt::Wallet::changePassWordDialog</name>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="108"/>
+        <source>Create a new wallet</source>
+        <translation>Жаңа әмиян жасау</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="110"/>
+        <source>Create</source>
+        <translation>Жасау</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="138"/>
+        <location filename="../frontend/changepassworddialog.cpp" line="280"/>
+        <source>Passwords do not match</source>
+        <translation>Парольдер сәйкес келмейді</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="221"/>
+        <source>Wallet password could not be changed</source>
+        <translation>Әмиян паролін өзгерту мүмкін болмады</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="232"/>
+        <source>Wallet could not be opened with the presented key</source>
+        <translation>Әмиянды ұсынылған кілтпен ашу мүмкін болмады</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="244"/>
+        <source>New passwords do not match</source>
+        <translation>Жаңа парольдер өзара сәйкес келмейді</translation>
+    </message>
+</context>
+<context>
+    <name>LXQt::Wallet::password_dialog</name>
+    <message>
+        <location filename="../frontend/password_dialog.cpp" line="72"/>
+        <source>Wallet could not be opened with the presented key</source>
+        <translation>Әмиянды ұсынылған кілтпен ашу мүмкін болмады</translation>
+    </message>
+</context>
+<context>
+    <name>changePassWordDialog</name>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="14"/>
+        <source>Change Wallet&apos;s Password</source>
+        <translation>Әмиян паролін өзгерту</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="42"/>
+        <source>C&amp;hange</source>
+        <translation>Ө&amp;згерту</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="55"/>
+        <source>&amp;Ok</source>
+        <translation>&amp;Ок</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="126"/>
+        <source>Enter Current Password Below.</source>
+        <translation>Төменде ағымдағы парольді енгізіңіз.</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="145"/>
+        <source>Enter New Password Below.</source>
+        <translation>Төменде жаңа парольді енгізіңіз.</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="164"/>
+        <source>Re Enter New Password Below.</source>
+        <translation>Төменде жаңа парольді қайта енгізіңіз.</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="183"/>
+        <source>&amp;Cancel</source>
+        <translation>&amp;Бас тарту</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="196"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;An application 
&apos;&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; has 
made a request for a password of its wallet &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos; to be changed&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; 
margin-left:0px; margin-right:0px; -qt-block-indent:0; 
text-indent:0px;&quot;&gt;&lt;br 
/&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 
4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&apos;&lt;span 
style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; қолданбасы өзінің 
&apos;&lt;span style=&quot; font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos; 
әмиянының паролін өзгертуге сұраным жасады&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; 
margin-left:0px; margin-right:0px; -qt-block-indent:0; 
text-indent:0px;&quot;&gt;&lt;br 
/&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="214"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Enter password 
information below to create a new wallet &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; for application &apos;&lt;span 
style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 
4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&apos;&lt;span 
style=&quot; font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos; қолданбасы үшін 
жаңа &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; әмиянын жасау үшін төменде 
пароль ақпаратын енгізіңіз&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+    </message>
+</context>
+<context>
+    <name>password_dialog</name>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="14"/>
+        <source>lxqt wallet service</source>
+        <translation>lxqt әмиян қызметі</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="42"/>
+        <source>The application &apos;%1&apos; has requested to open the 
wallet &apos;%2&apos;.Enter the password below for this wallet to unlock 
it</source>
+        <translation>&apos;%1&apos; қолданбасы &apos;%2&apos; әмиянын ашуға 
сұраным жасады. Оны бұғаттаудан босату үшін төменде осы әмиянның паролін 
енгізіңіз</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="74"/>
+        <source>Wallet &apos;%1&apos; does not exist,do you want to create 
it?</source>
+        <translation>&apos;%1&apos; әмияны жоқ, оны жасағыңыз келе 
ме?</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="90"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Wallet &lt;span 
style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; does not 
exist, do you want to create it?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 
4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span 
style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; әмияны жоқ, 
оны жасағыңыз келе ме?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="107"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;An application 
&lt;span style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; has 
requested to open a wallet&lt;span style=&quot; font-weight:600;&quot;&gt; 
&apos;%2&apos;&lt;/span&gt;. Enter the password below for this wallet to unlock 
it.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 
4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span 
style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; қолданбасы 
&lt;span style=&quot; font-weight:600;&quot;&gt; &apos;%2&apos;&lt;/span&gt; 
әмиянын ашуға сұраным жасады. Оны бұғаттаудан босату үшін төменде осы әмиянның 
паролін енгізіңіз.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="124"/>
+        <source>&amp;Unlock</source>
+        <translation>Құлыпты а&amp;шу</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="141"/>
+        <source>&amp;Cancel</source>
+        <translation>&amp;Бас тарту</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="167"/>
+        <source>&amp;Ok</source>
+        <translation>&amp;ОК</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="154"/>
+        <source>ok</source>
+        <translation>ок</translation>
+    </message>
+</context>
+</TS>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-wallet-4.0.2/translations/lxqt-wallet_ko.ts 
new/lxqt-wallet-4.1.0/translations/lxqt-wallet_ko.ts
--- old/lxqt-wallet-4.0.2/translations/lxqt-wallet_ko.ts        2022-08-04 
13:53:39.000000000 +0200
+++ new/lxqt-wallet-4.1.0/translations/lxqt-wallet_ko.ts        2026-08-27 
12:08:39.000000000 +0200
@@ -63,17 +63,17 @@
     <message>
         <location filename="../frontend/changepassworddialog.ui" line="126"/>
         <source>Enter Current Password Below.</source>
-        <translation>아래에 현재 비밀번호를 입력하십시오.</translation>
+        <translation>현재 비밀번호를 아래에 입력하세요.</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.ui" line="145"/>
         <source>Enter New Password Below.</source>
-        <translation>아래에 새 비밀번호를 입력하십시오.</translation>
+        <translation>현재 비밀번호를 아래에 입력하세요.</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.ui" line="164"/>
         <source>Re Enter New Password Below.</source>
-        <translation>아래에 새 비밀번호를 다시 입력하십시오.</translation>
+        <translation>새 비밀번호를 아래에 다시 입력하세요.</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.ui" line="183"/>
@@ -106,7 +106,7 @@
 &lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
 p, li { white-space: pre-wrap; }
 &lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&apos;&lt;span 
style=&quot; font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos; 응용 프로그램에 대한 새 지갑 
&apos;&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos;을(를) 
생성하려면 아래에 비밀번호 정보를 입력하십시오&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&apos;&lt;span 
style=&quot; font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos; 응용 프로그램에 대한 새 지갑 
&apos;&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos;을(를) 
생성하려면 아래에 비밀번호 정보를 입력하세요&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
     </message>
 </context>
 <context>
@@ -119,7 +119,7 @@
     <message>
         <location filename="../frontend/password_dialog.ui" line="42"/>
         <source>The application &apos;%1&apos; has requested to open the 
wallet &apos;%2&apos;.Enter the password below for this wallet to unlock 
it</source>
-        <translation>&apos;%1&apos; 응용 프로그램이 &apos;%2&apos; 지갑 열기를 요청했습니다. 이 
지갑을 잠금 해제하려면 아래에 비밀번호를 입력하십시오</translation>
+        <translation>&apos;%1&apos; 응용 프로그램이 &apos;%2&apos; 지갑 열기를 요청했습니다. 이 
지갑을 잠금 해제하려면 아래에 비밀번호를 입력하세요</translation>
     </message>
     <message>
         <location filename="../frontend/password_dialog.ui" line="74"/>
@@ -150,7 +150,7 @@
 &lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
 p, li { white-space: pre-wrap; }
 &lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span 
style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; 응용 프로그램이 지갑 
&lt;span style=&quot; font-weight:600;&quot;&gt;&apos;%2&apos;&lt;/span&gt;열기를 
요청했습니다. 이 지갑의 잠금을 해제하려면 아래에 비밀번호를 
입력하십시오.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span 
style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; 응용 프로그램이 지갑 
&lt;span style=&quot; font-weight:600;&quot;&gt;&apos;%2&apos;&lt;/span&gt;열기를 
요청했습니다. 이 지갑의 잠금을 해제하려면 아래에 비밀번호를 
입력하세요.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
     </message>
     <message>
         <location filename="../frontend/password_dialog.ui" line="124"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-wallet-4.0.2/translations/lxqt-wallet_ug.ts 
new/lxqt-wallet-4.1.0/translations/lxqt-wallet_ug.ts
--- old/lxqt-wallet-4.0.2/translations/lxqt-wallet_ug.ts        1970-01-01 
01:00:00.000000000 +0100
+++ new/lxqt-wallet-4.1.0/translations/lxqt-wallet_ug.ts        2026-08-27 
12:17:48.000000000 +0200
@@ -0,0 +1,159 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.1" language="ug">
+<context>
+    <name>LXQt::Wallet::changePassWordDialog</name>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="108"/>
+        <source>Create a new wallet</source>
+        <translation>يېڭى ھەميان قۇر</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="110"/>
+        <source>Create</source>
+        <translation>قۇر</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="138"/>
+        <location filename="../frontend/changepassworddialog.cpp" line="280"/>
+        <source>Passwords do not match</source>
+        <translation>ئىم ماس كەلمىدى</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="221"/>
+        <source>Wallet password could not be changed</source>
+        <translation>ھەميان ئىمنى ئۆزگەرتكىلى بولمىدى</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="232"/>
+        <source>Wallet could not be opened with the presented key</source>
+        <translation>تەمىنلىگەن ئاچقۇچ ئارقىلىق ھەمياننى ئاچقىلى 
بولمايدۇ</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="244"/>
+        <source>New passwords do not match</source>
+        <translation>يېڭى ئىم ماس كەلمىدى</translation>
+    </message>
+</context>
+<context>
+    <name>LXQt::Wallet::password_dialog</name>
+    <message>
+        <location filename="../frontend/password_dialog.cpp" line="72"/>
+        <source>Wallet could not be opened with the presented key</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>changePassWordDialog</name>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="14"/>
+        <source>Change Wallet&apos;s Password</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="42"/>
+        <source>C&amp;hange</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="55"/>
+        <source>&amp;Ok</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="126"/>
+        <source>Enter Current Password Below.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="145"/>
+        <source>Enter New Password Below.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="164"/>
+        <source>Re Enter New Password Below.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="183"/>
+        <source>&amp;Cancel</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="196"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;An application 
&apos;&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; has 
made a request for a password of its wallet &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos; to be changed&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; 
margin-left:0px; margin-right:0px; -qt-block-indent:0; 
text-indent:0px;&quot;&gt;&lt;br 
/&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="214"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Enter password 
information below to create a new wallet &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; for application &apos;&lt;span 
style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>password_dialog</name>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="14"/>
+        <source>lxqt wallet service</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="42"/>
+        <source>The application &apos;%1&apos; has requested to open the 
wallet &apos;%2&apos;.Enter the password below for this wallet to unlock 
it</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="74"/>
+        <source>Wallet &apos;%1&apos; does not exist,do you want to create 
it?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="90"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Wallet &lt;span 
style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; does not 
exist, do you want to create it?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="107"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;An application 
&lt;span style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; has 
requested to open a wallet&lt;span style=&quot; font-weight:600;&quot;&gt; 
&apos;%2&apos;&lt;/span&gt;. Enter the password below for this wallet to unlock 
it.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="124"/>
+        <source>&amp;Unlock</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="141"/>
+        <source>&amp;Cancel</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="167"/>
+        <source>&amp;Ok</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="154"/>
+        <source>ok</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+</TS>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-wallet-4.0.2/translations/lxqt-wallet_zh_CN.ts 
new/lxqt-wallet-4.1.0/translations/lxqt-wallet_zh_CN.ts
--- old/lxqt-wallet-4.0.2/translations/lxqt-wallet_zh_CN.ts     2024-10-24 
06:47:17.000000000 +0200
+++ new/lxqt-wallet-4.1.0/translations/lxqt-wallet_zh_CN.ts     2026-08-27 
12:08:39.000000000 +0200
@@ -6,33 +6,33 @@
     <message>
         <location filename="../frontend/changepassworddialog.cpp" line="108"/>
         <source>Create a new wallet</source>
-        <translation type="unfinished"></translation>
+        <translation>新建一个钱包</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.cpp" line="110"/>
         <source>Create</source>
-        <translation type="unfinished"></translation>
+        <translation>创建</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.cpp" line="138"/>
         <location filename="../frontend/changepassworddialog.cpp" line="280"/>
         <source>Passwords do not match</source>
-        <translation type="unfinished"></translation>
+        <translation>密码不一致</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.cpp" line="221"/>
         <source>Wallet password could not be changed</source>
-        <translation type="unfinished"></translation>
+        <translation>无法更改钱包密码</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.cpp" line="232"/>
         <source>Wallet could not be opened with the presented key</source>
-        <translation type="unfinished"></translation>
+        <translation>无法使用提供的密钥打开钱包</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.cpp" line="244"/>
         <source>New passwords do not match</source>
-        <translation type="unfinished"></translation>
+        <translation>新的密码不匹配</translation>
     </message>
 </context>
 <context>
@@ -40,7 +40,7 @@
     <message>
         <location filename="../frontend/password_dialog.cpp" line="72"/>
         <source>Wallet could not be opened with the presented key</source>
-        <translation type="unfinished"></translation>
+        <translation>无法使用提供的密钥打开钱包</translation>
     </message>
 </context>
 <context>
@@ -48,37 +48,37 @@
     <message>
         <location filename="../frontend/changepassworddialog.ui" line="14"/>
         <source>Change Wallet&apos;s Password</source>
-        <translation type="unfinished"></translation>
+        <translation>更改钱包密码</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.ui" line="42"/>
         <source>C&amp;hange</source>
-        <translation type="unfinished"></translation>
+        <translation>修改(&amp;H)</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.ui" line="55"/>
         <source>&amp;Ok</source>
-        <translation type="unfinished"></translation>
+        <translation>确定(&amp;O)</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.ui" line="126"/>
         <source>Enter Current Password Below.</source>
-        <translation type="unfinished"></translation>
+        <translation>请在下方输入当前密码。</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.ui" line="145"/>
         <source>Enter New Password Below.</source>
-        <translation type="unfinished"></translation>
+        <translation>请在下方输入新密码。</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.ui" line="164"/>
         <source>Re Enter New Password Below.</source>
-        <translation type="unfinished"></translation>
+        <translation>请重新输入新密码。</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.ui" line="183"/>
         <source>&amp;Cancel</source>
-        <translation type="unfinished"></translation>
+        <translation>取消(&amp;C)</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.ui" line="196"/>
@@ -88,7 +88,12 @@
 &lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
 &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;An application 
&apos;&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; has 
made a request for a password of its wallet &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos; to be changed&lt;/p&gt;
 &lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; 
margin-left:0px; margin-right:0px; -qt-block-indent:0; 
text-indent:0px;&quot;&gt;&lt;br 
/&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
-        <translation type="unfinished"></translation>
+        <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 
4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;应用程序 
&apos;&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; 
已发起对钱包 &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos; 密码修改的请求&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; 
margin-left:0px; margin-right:0px; -qt-block-indent:0; 
text-indent:0px;&quot;&gt;&lt;br 
/&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
     </message>
     <message>
         <location filename="../frontend/changepassworddialog.ui" line="214"/>
@@ -97,7 +102,11 @@
 p, li { white-space: pre-wrap; }
 &lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
 &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Enter password 
information below to create a new wallet &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; for application &apos;&lt;span 
style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
-        <translation type="unfinished"></translation>
+        <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 
4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; 
text-indent:0px;&quot;&gt;输入下面的密码信息来创建一个新的钱包 &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; 为应用程序 &apos;&lt;span 
style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
     </message>
 </context>
 <context>
@@ -105,17 +114,17 @@
     <message>
         <location filename="../frontend/password_dialog.ui" line="14"/>
         <source>lxqt wallet service</source>
-        <translation type="unfinished"></translation>
+        <translation>lxqt 钱包服务</translation>
     </message>
     <message>
         <location filename="../frontend/password_dialog.ui" line="42"/>
         <source>The application &apos;%1&apos; has requested to open the 
wallet &apos;%2&apos;.Enter the password below for this wallet to unlock 
it</source>
-        <translation type="unfinished"></translation>
+        <translation>应用程序&quot;%1 
&quot;请求打开钱包&quot;%2&quot;。请在下方输入该钱包的密码以解锁它</translation>
     </message>
     <message>
         <location filename="../frontend/password_dialog.ui" line="74"/>
         <source>Wallet &apos;%1&apos; does not exist,do you want to create 
it?</source>
-        <translation type="unfinished"></translation>
+        <translation>钱包 &apos;%1&apos; 不存在,是否要创建它?</translation>
     </message>
     <message>
         <location filename="../frontend/password_dialog.ui" line="90"/>
@@ -124,7 +133,11 @@
 p, li { white-space: pre-wrap; }
 &lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
 &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Wallet &lt;span 
style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; does not 
exist, do you want to create it?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
-        <translation type="unfinished"></translation>
+        <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 
4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;钱包 &lt;span 
style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; 尚不存在, 
你想要创建它吗?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
     </message>
     <message>
         <location filename="../frontend/password_dialog.ui" line="107"/>
@@ -133,27 +146,31 @@
 p, li { white-space: pre-wrap; }
 &lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
 &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;An application 
&lt;span style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; has 
requested to open a wallet&lt;span style=&quot; font-weight:600;&quot;&gt; 
&apos;%2&apos;&lt;/span&gt;. Enter the password below for this wallet to unlock 
it.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
-        <translation type="unfinished"></translation>
+        <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 
4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;应用程序 &lt;span 
style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; 
已请求打开钱包&lt;span style=&quot; font-weight:600;&quot;&gt; 
&apos;%2&apos;&lt;/span&gt;。 
请在下方输入密码以解锁此钱包。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
     </message>
     <message>
         <location filename="../frontend/password_dialog.ui" line="124"/>
         <source>&amp;Unlock</source>
-        <translation type="unfinished"></translation>
+        <translation>解锁(&amp;U)</translation>
     </message>
     <message>
         <location filename="../frontend/password_dialog.ui" line="141"/>
         <source>&amp;Cancel</source>
-        <translation type="unfinished"></translation>
+        <translation>取消(&amp;C)</translation>
     </message>
     <message>
         <location filename="../frontend/password_dialog.ui" line="167"/>
         <source>&amp;Ok</source>
-        <translation type="unfinished"></translation>
+        <translation>确定(&amp;O)</translation>
     </message>
     <message>
         <location filename="../frontend/password_dialog.ui" line="154"/>
         <source>ok</source>
-        <translation type="unfinished"></translation>
+        <translation>确定</translation>
     </message>
 </context>
 </TS>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-wallet-4.0.2/translations/lxqt-wallet_zh_TW.ts 
new/lxqt-wallet-4.1.0/translations/lxqt-wallet_zh_TW.ts
--- old/lxqt-wallet-4.0.2/translations/lxqt-wallet_zh_TW.ts     1970-01-01 
01:00:00.000000000 +0100
+++ new/lxqt-wallet-4.1.0/translations/lxqt-wallet_zh_TW.ts     2026-08-27 
12:08:39.000000000 +0200
@@ -0,0 +1,176 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.1" language="zh_TW">
+<context>
+    <name>LXQt::Wallet::changePassWordDialog</name>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="108"/>
+        <source>Create a new wallet</source>
+        <translation>建立新的錢包</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="110"/>
+        <source>Create</source>
+        <translation>建立</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="138"/>
+        <location filename="../frontend/changepassworddialog.cpp" line="280"/>
+        <source>Passwords do not match</source>
+        <translation>密碼不符合</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="221"/>
+        <source>Wallet password could not be changed</source>
+        <translation>錢包密碼無法變更</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="232"/>
+        <source>Wallet could not be opened with the presented key</source>
+        <translation>無法使用所提供的密鑰來開啟錢包</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.cpp" line="244"/>
+        <source>New passwords do not match</source>
+        <translation>新建密碼不符合</translation>
+    </message>
+</context>
+<context>
+    <name>LXQt::Wallet::password_dialog</name>
+    <message>
+        <location filename="../frontend/password_dialog.cpp" line="72"/>
+        <source>Wallet could not be opened with the presented key</source>
+        <translation>無法使用所提供的密鑰來開啟錢包</translation>
+    </message>
+</context>
+<context>
+    <name>changePassWordDialog</name>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="14"/>
+        <source>Change Wallet&apos;s Password</source>
+        <translation>變更錢包密碼</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="42"/>
+        <source>C&amp;hange</source>
+        <translation>變更(&amp;H)</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="55"/>
+        <source>&amp;Ok</source>
+        <translation>&amp;OK</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="126"/>
+        <source>Enter Current Password Below.</source>
+        <translation>請於下方輸入目前密碼。</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="145"/>
+        <source>Enter New Password Below.</source>
+        <translation>請於下方輸入新的密碼。</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="164"/>
+        <source>Re Enter New Password Below.</source>
+        <translation>請於下方再次輸入新的密碼。</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="183"/>
+        <source>&amp;Cancel</source>
+        <translation>取消(&amp;C)</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="196"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;An application 
&apos;&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; has 
made a request for a password of its wallet &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos; to be changed&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; 
margin-left:0px; margin-right:0px; -qt-block-indent:0; 
text-indent:0px;&quot;&gt;&lt;br 
/&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 
4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;應用程式 
&apos;&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; 
要求用於其錢包的密碼 &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos; 進行變更&lt;/p&gt;
+&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; 
margin-left:0px; margin-right:0px; -qt-block-indent:0; 
text-indent:0px;&quot;&gt;&lt;br 
/&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+    </message>
+    <message>
+        <location filename="../frontend/changepassworddialog.ui" line="214"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Enter password 
information below to create a new wallet &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; for application &apos;&lt;span 
style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 
4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; 
text-indent:0px;&quot;&gt;於下方輸入密碼資料來建立新的錢包 &apos;&lt;span style=&quot; 
font-weight:600;&quot;&gt;%1&lt;/span&gt;&apos; 用於應用程式 &apos;&lt;span 
style=&quot; 
font-weight:600;&quot;&gt;%2&lt;/span&gt;&apos;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+    </message>
+</context>
+<context>
+    <name>password_dialog</name>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="14"/>
+        <source>lxqt wallet service</source>
+        <translation>lxqt 錢包服務</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="42"/>
+        <source>The application &apos;%1&apos; has requested to open the 
wallet &apos;%2&apos;.Enter the password below for this wallet to unlock 
it</source>
+        <translation>應用程式 &apos;%1&apos; 已要求開啟錢包 
&apos;%2&apos;。下方輸入密碼用於此錢包進行解鎖</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="74"/>
+        <source>Wallet &apos;%1&apos; does not exist,do you want to create 
it?</source>
+        <translation>錢包 &apos;%1&apos; 並不存在,確定要建立它嗎?</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="90"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Wallet &lt;span 
style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; does not 
exist, do you want to create it?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 
4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;錢包 &lt;span 
style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; 
並不存在,確定要建立它嗎?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="107"/>
+        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; 
&quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;An application 
&lt;span style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; has 
requested to open a wallet&lt;span style=&quot; font-weight:600;&quot;&gt; 
&apos;%2&apos;&lt;/span&gt;. Enter the password below for this wallet to unlock 
it.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 
4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
+&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; 
content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
+p, li { white-space: pre-wrap; }
+&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans 
Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; 
margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;應用程式 &lt;span 
style=&quot; font-weight:600;&quot;&gt;&apos;%1&apos;&lt;/span&gt; 
要求開啟錢包&lt;span style=&quot; font-weight:600;&quot;&gt; 
&apos;%2&apos;&lt;/span&gt;。下方輸入密碼用於此錢包進行解鎖。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="124"/>
+        <source>&amp;Unlock</source>
+        <translation>解鎖(&amp;U)</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="141"/>
+        <source>&amp;Cancel</source>
+        <translation>取消(&amp;C)</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="167"/>
+        <source>&amp;Ok</source>
+        <translation>&amp;OK</translation>
+    </message>
+    <message>
+        <location filename="../frontend/password_dialog.ui" line="154"/>
+        <source>ok</source>
+        <translation>OK</translation>
+    </message>
+</context>
+</TS>

Reply via email to