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&hange</source> - <translation>&ändern</translation> + <translation>&Ändern</translation> </message> <message> <location filename="../frontend/changepassworddialog.ui" line="55"/> <source>&Ok</source> - <translation>&Ok</translation> + <translation>&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>&Ok</source> - <translation>&Ok</translation> + <translation>&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's Password</source> + <translation>Change Wallet's Password</translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="42"/> + <source>C&hange</source> + <translation>C&hange</translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="55"/> + <source>&Ok</source> + <translation>&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>&Cancel</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="196"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">An application '<span style=" font-weight:600;">%1</span>' has made a request for a password of its wallet '<span style=" font-weight:600;">%2</span>' to be changed</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="214"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Enter password information below to create a new wallet '<span style=" font-weight:600;">%1</span>' for application '<span style=" font-weight:600;">%2</span>'</p></body></html></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 '%1' has requested to open the wallet '%2'.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 '%1' 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><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Wallet <span style=" font-weight:600;">'%1'</span> does not exist, do you want to create it?</p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="107"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">An application <span style=" font-weight:600;">'%1'</span> has requested to open a wallet<span style=" font-weight:600;"> '%2'</span>. Enter the password below for this wallet to unlock it.</p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="124"/> + <source>&Unlock</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="141"/> + <source>&Cancel</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="167"/> + <source>&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's Password</source> + <translation>საფულის პაროლის შეცვლა</translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="42"/> + <source>C&hange</source> + <translation>შე&ცვლა</translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="55"/> + <source>&Ok</source> + <translation>&დიახ</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>&Cancel</source> + <translation>&გაუქმება</translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="196"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">An application '<span style=" font-weight:600;">%1</span>' has made a request for a password of its wallet '<span style=" font-weight:600;">%2</span>' to be changed</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">აპლიკაციამ '<span style=" font-weight:600;">%1</span>' მოითხოვა, რომ პაროლი თავისი საფულისთვის '<span style=" font-weight:600;">%2</span>' შეცვალოს</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="214"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Enter password information below to create a new wallet '<span style=" font-weight:600;">%1</span>' for application '<span style=" font-weight:600;">%2</span>'</p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">შეიყვანეთ პაროლის ინფორმაცია ქვემოთ, ახალი საფულის შესაქმნელად '<span style=" font-weight:600;">%1</span>' აპლიკაციისთვის '<span style=" font-weight:600;">%2</span>'</p></body></html></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 '%1' has requested to open the wallet '%2'.Enter the password below for this wallet to unlock it</source> + <translation>აპლიკაციამ '%1' მოითხოვა, გაიხსნას საქაღალდე '%2'. შეიყვანეთ საფულის პაროლი ქვემოთ მისი განბლოკვისთვის</translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="74"/> + <source>Wallet '%1' does not exist,do you want to create it?</source> + <translation>საფულე '%1' არ არსებობს. გნებავთ, შექმნათ ის?</translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="90"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Wallet <span style=" font-weight:600;">'%1'</span> does not exist, do you want to create it?</p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">საფულე <span style=" font-weight:600;">'%1'</span> არ არსებობს. გნებავთ, შექმნათ ის?</p></body></html></translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="107"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">An application <span style=" font-weight:600;">'%1'</span> has requested to open a wallet<span style=" font-weight:600;"> '%2'</span>. Enter the password below for this wallet to unlock it.</p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">აპლიკაციამ <span style=" font-weight:600;">'%1'</span> მოითხოვა გახნა საფულისთვის <span style=" font-weight:600;"> '%2'</span>. შეიყვანეთ ქვემოთ პაროლი მისი განბლოკვისთვის.</p></body></html></translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="124"/> + <source>&Unlock</source> + <translation>&განბლოკვა</translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="141"/> + <source>&Cancel</source> + <translation>გა&უქმება</translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="167"/> + <source>&Ok</source> + <translation>&დიახ</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's Password</source> + <translation>Snifel awal uffir n texriḍt</translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="42"/> + <source>C&hange</source> + <translation>&Snifel</translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="55"/> + <source>&Ok</source> + <translation>&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>&Cancel</source> + <translation>Se&fsex</translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="196"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">An application '<span style=" font-weight:600;">%1</span>' has made a request for a password of its wallet '<span style=" font-weight:600;">%2</span>' to be changed</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="214"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Enter password information below to create a new wallet '<span style=" font-weight:600;">%1</span>' for application '<span style=" font-weight:600;">%2</span>'</p></body></html></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 '%1' has requested to open the wallet '%2'.Enter the password below for this wallet to unlock it</source> + <translation>Asnas '%1' yessuter ad yeldi taxriḍt '%2'. 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 '%1' does not exist,do you want to create it?</source> + <translation>Ulac taxriḍt '%1', tebɣiḍ ad tt-id-tesnulfuḍ?</translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="90"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Wallet <span style=" font-weight:600;">'%1'</span> does not exist, do you want to create it?</p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="107"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">An application <span style=" font-weight:600;">'%1'</span> has requested to open a wallet<span style=" font-weight:600;"> '%2'</span>. Enter the password below for this wallet to unlock it.</p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="124"/> + <source>&Unlock</source> + <translation>&Kkes asekkeṛ</translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="141"/> + <source>&Cancel</source> + <translation>Se&fsex</translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="167"/> + <source>&Ok</source> + <translation>&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's Password</source> + <translation>Әмиян паролін өзгерту</translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="42"/> + <source>C&hange</source> + <translation>Ө&згерту</translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="55"/> + <source>&Ok</source> + <translation>&Ок</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>&Cancel</source> + <translation>&Бас тарту</translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="196"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">An application '<span style=" font-weight:600;">%1</span>' has made a request for a password of its wallet '<span style=" font-weight:600;">%2</span>' to be changed</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">'<span style=" font-weight:600;">%1</span>' қолданбасы өзінің '<span style=" font-weight:600;">%2</span>' әмиянының паролін өзгертуге сұраным жасады</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="214"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Enter password information below to create a new wallet '<span style=" font-weight:600;">%1</span>' for application '<span style=" font-weight:600;">%2</span>'</p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">'<span style=" font-weight:600;">%2</span>' қолданбасы үшін жаңа '<span style=" font-weight:600;">%1</span>' әмиянын жасау үшін төменде пароль ақпаратын енгізіңіз</p></body></html></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 '%1' has requested to open the wallet '%2'.Enter the password below for this wallet to unlock it</source> + <translation>'%1' қолданбасы '%2' әмиянын ашуға сұраным жасады. Оны бұғаттаудан босату үшін төменде осы әмиянның паролін енгізіңіз</translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="74"/> + <source>Wallet '%1' does not exist,do you want to create it?</source> + <translation>'%1' әмияны жоқ, оны жасағыңыз келе ме?</translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="90"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Wallet <span style=" font-weight:600;">'%1'</span> does not exist, do you want to create it?</p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">'%1'</span> әмияны жоқ, оны жасағыңыз келе ме?</p></body></html></translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="107"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">An application <span style=" font-weight:600;">'%1'</span> has requested to open a wallet<span style=" font-weight:600;"> '%2'</span>. Enter the password below for this wallet to unlock it.</p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">'%1'</span> қолданбасы <span style=" font-weight:600;"> '%2'</span> әмиянын ашуға сұраным жасады. Оны бұғаттаудан босату үшін төменде осы әмиянның паролін енгізіңіз.</p></body></html></translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="124"/> + <source>&Unlock</source> + <translation>Құлыпты а&шу</translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="141"/> + <source>&Cancel</source> + <translation>&Бас тарту</translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="167"/> + <source>&Ok</source> + <translation>&ОК</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 @@ <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">'<span style=" font-weight:600;">%2</span>' 응용 프로그램에 대한 새 지갑 '<span style=" font-weight:600;">%1</span>'을(를) 생성하려면 아래에 비밀번호 정보를 입력하십시오</p></body></html></translation> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">'<span style=" font-weight:600;">%2</span>' 응용 프로그램에 대한 새 지갑 '<span style=" font-weight:600;">%1</span>'을(를) 생성하려면 아래에 비밀번호 정보를 입력하세요</p></body></html></translation> </message> </context> <context> @@ -119,7 +119,7 @@ <message> <location filename="../frontend/password_dialog.ui" line="42"/> <source>The application '%1' has requested to open the wallet '%2'.Enter the password below for this wallet to unlock it</source> - <translation>'%1' 응용 프로그램이 '%2' 지갑 열기를 요청했습니다. 이 지갑을 잠금 해제하려면 아래에 비밀번호를 입력하십시오</translation> + <translation>'%1' 응용 프로그램이 '%2' 지갑 열기를 요청했습니다. 이 지갑을 잠금 해제하려면 아래에 비밀번호를 입력하세요</translation> </message> <message> <location filename="../frontend/password_dialog.ui" line="74"/> @@ -150,7 +150,7 @@ <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">'%1'</span> 응용 프로그램이 지갑 <span style=" font-weight:600;">'%2'</span>열기를 요청했습니다. 이 지갑의 잠금을 해제하려면 아래에 비밀번호를 입력하십시오.</p></body></html></translation> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">'%1'</span> 응용 프로그램이 지갑 <span style=" font-weight:600;">'%2'</span>열기를 요청했습니다. 이 지갑의 잠금을 해제하려면 아래에 비밀번호를 입력하세요.</p></body></html></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's Password</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="42"/> + <source>C&hange</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="55"/> + <source>&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>&Cancel</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="196"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">An application '<span style=" font-weight:600;">%1</span>' has made a request for a password of its wallet '<span style=" font-weight:600;">%2</span>' to be changed</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="214"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Enter password information below to create a new wallet '<span style=" font-weight:600;">%1</span>' for application '<span style=" font-weight:600;">%2</span>'</p></body></html></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 '%1' has requested to open the wallet '%2'.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 '%1' 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><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Wallet <span style=" font-weight:600;">'%1'</span> does not exist, do you want to create it?</p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="107"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">An application <span style=" font-weight:600;">'%1'</span> has requested to open a wallet<span style=" font-weight:600;"> '%2'</span>. Enter the password below for this wallet to unlock it.</p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="124"/> + <source>&Unlock</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="141"/> + <source>&Cancel</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="167"/> + <source>&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's Password</source> - <translation type="unfinished"></translation> + <translation>更改钱包密码</translation> </message> <message> <location filename="../frontend/changepassworddialog.ui" line="42"/> <source>C&hange</source> - <translation type="unfinished"></translation> + <translation>修改(&H)</translation> </message> <message> <location filename="../frontend/changepassworddialog.ui" line="55"/> <source>&Ok</source> - <translation type="unfinished"></translation> + <translation>确定(&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>&Cancel</source> - <translation type="unfinished"></translation> + <translation>取消(&C)</translation> </message> <message> <location filename="../frontend/changepassworddialog.ui" line="196"/> @@ -88,7 +88,12 @@ </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">An application '<span style=" font-weight:600;">%1</span>' has made a request for a password of its wallet '<span style=" font-weight:600;">%2</span>' to be changed</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></source> - <translation type="unfinished"></translation> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">应用程序 '<span style=" font-weight:600;">%1</span>' 已发起对钱包 '<span style=" font-weight:600;">%2</span>' 密码修改的请求</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></translation> </message> <message> <location filename="../frontend/changepassworddialog.ui" line="214"/> @@ -97,7 +102,11 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Enter password information below to create a new wallet '<span style=" font-weight:600;">%1</span>' for application '<span style=" font-weight:600;">%2</span>'</p></body></html></source> - <translation type="unfinished"></translation> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">输入下面的密码信息来创建一个新的钱包 '<span style=" font-weight:600;">%1</span>' 为应用程序 '<span style=" font-weight:600;">%2</span>'</p></body></html></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 '%1' has requested to open the wallet '%2'.Enter the password below for this wallet to unlock it</source> - <translation type="unfinished"></translation> + <translation>应用程序"%1 "请求打开钱包"%2"。请在下方输入该钱包的密码以解锁它</translation> </message> <message> <location filename="../frontend/password_dialog.ui" line="74"/> <source>Wallet '%1' does not exist,do you want to create it?</source> - <translation type="unfinished"></translation> + <translation>钱包 '%1' 不存在,是否要创建它?</translation> </message> <message> <location filename="../frontend/password_dialog.ui" line="90"/> @@ -124,7 +133,11 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Wallet <span style=" font-weight:600;">'%1'</span> does not exist, do you want to create it?</p></body></html></source> - <translation type="unfinished"></translation> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">钱包 <span style=" font-weight:600;">'%1'</span> 尚不存在, 你想要创建它吗?</p></body></html></translation> </message> <message> <location filename="../frontend/password_dialog.ui" line="107"/> @@ -133,27 +146,31 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">An application <span style=" font-weight:600;">'%1'</span> has requested to open a wallet<span style=" font-weight:600;"> '%2'</span>. Enter the password below for this wallet to unlock it.</p></body></html></source> - <translation type="unfinished"></translation> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">应用程序 <span style=" font-weight:600;">'%1'</span> 已请求打开钱包<span style=" font-weight:600;"> '%2'</span>。 请在下方输入密码以解锁此钱包。</p></body></html></translation> </message> <message> <location filename="../frontend/password_dialog.ui" line="124"/> <source>&Unlock</source> - <translation type="unfinished"></translation> + <translation>解锁(&U)</translation> </message> <message> <location filename="../frontend/password_dialog.ui" line="141"/> <source>&Cancel</source> - <translation type="unfinished"></translation> + <translation>取消(&C)</translation> </message> <message> <location filename="../frontend/password_dialog.ui" line="167"/> <source>&Ok</source> - <translation type="unfinished"></translation> + <translation>确定(&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's Password</source> + <translation>變更錢包密碼</translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="42"/> + <source>C&hange</source> + <translation>變更(&H)</translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="55"/> + <source>&Ok</source> + <translation>&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>&Cancel</source> + <translation>取消(&C)</translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="196"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">An application '<span style=" font-weight:600;">%1</span>' has made a request for a password of its wallet '<span style=" font-weight:600;">%2</span>' to be changed</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">應用程式 '<span style=" font-weight:600;">%1</span>' 要求用於其錢包的密碼 '<span style=" font-weight:600;">%2</span>' 進行變更</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></translation> + </message> + <message> + <location filename="../frontend/changepassworddialog.ui" line="214"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Enter password information below to create a new wallet '<span style=" font-weight:600;">%1</span>' for application '<span style=" font-weight:600;">%2</span>'</p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">於下方輸入密碼資料來建立新的錢包 '<span style=" font-weight:600;">%1</span>' 用於應用程式 '<span style=" font-weight:600;">%2</span>'</p></body></html></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 '%1' has requested to open the wallet '%2'.Enter the password below for this wallet to unlock it</source> + <translation>應用程式 '%1' 已要求開啟錢包 '%2'。下方輸入密碼用於此錢包進行解鎖</translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="74"/> + <source>Wallet '%1' does not exist,do you want to create it?</source> + <translation>錢包 '%1' 並不存在,確定要建立它嗎?</translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="90"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Wallet <span style=" font-weight:600;">'%1'</span> does not exist, do you want to create it?</p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">錢包 <span style=" font-weight:600;">'%1'</span> 並不存在,確定要建立它嗎?</p></body></html></translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="107"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">An application <span style=" font-weight:600;">'%1'</span> has requested to open a wallet<span style=" font-weight:600;"> '%2'</span>. Enter the password below for this wallet to unlock it.</p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">應用程式 <span style=" font-weight:600;">'%1'</span> 要求開啟錢包<span style=" font-weight:600;"> '%2'</span>。下方輸入密碼用於此錢包進行解鎖。</p></body></html></translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="124"/> + <source>&Unlock</source> + <translation>解鎖(&U)</translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="141"/> + <source>&Cancel</source> + <translation>取消(&C)</translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="167"/> + <source>&Ok</source> + <translation>&OK</translation> + </message> + <message> + <location filename="../frontend/password_dialog.ui" line="154"/> + <source>ok</source> + <translation>OK</translation> + </message> +</context> +</TS>
