From 46a1daeafceedfd3847003bf51a78980e658209f Mon Sep 17 00:00:00 2001 From: shenmo Date: Mon, 24 Feb 2025 21:11:51 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E6=94=AF=E6=8C=81=20Debian=20/=20GXDE=20?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E8=AF=86=E5=88=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/assets.qrc | 1 + src/assets/tags/debian.svg | 1 + src/pages/appintopage.cpp | 47 ++++++++++++++++++++------------------ src/pages/appintopage.h | 2 +- src/pages/appintopage.ui | 30 ++++++++++++++---------- src/spark-store.pro | 2 ++ 6 files changed, 48 insertions(+), 35 deletions(-) create mode 100644 src/assets/tags/debian.svg diff --git a/src/assets/assets.qrc b/src/assets/assets.qrc index c0548c9..f2f5df4 100644 --- a/src/assets/assets.qrc +++ b/src/assets/assets.qrc @@ -63,5 +63,6 @@ tags/uos-small.png tags/uos.svg translations/qtwebengine_zh.qm + tags/debian.svg diff --git a/src/assets/tags/debian.svg b/src/assets/tags/debian.svg new file mode 100644 index 0000000..c8e64b2 --- /dev/null +++ b/src/assets/tags/debian.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/pages/appintopage.cpp b/src/pages/appintopage.cpp index 9ef148c..8152db4 100644 --- a/src/pages/appintopage.cpp +++ b/src/pages/appintopage.cpp @@ -231,6 +231,7 @@ void AppIntoPage::clear() ui->tag_deepin->hide(); ui->tag_dwine2->hide(); ui->tag_dwine5->hide(); + ui->tag_debian->hide(); ui->tag_ubuntu->hide(); ui->tag_community->hide(); ui->icon->clear(); @@ -402,12 +403,18 @@ void AppIntoPage::setAppinfoTags(const QStringList &tagList) bool ubuntuSupport = false; bool deepinSupport = false; bool uosSupport = false; + bool debianSupport = false; foreach (const QString &tag, tagList) { if (tag == "community") { ui->tag_community->show(); } + else if (tag == "debian") + { + ui->tag_debian->show(); + debianSupport = true; + } else if (tag == "ubuntu") { ui->tag_ubuntu->show(); @@ -441,10 +448,10 @@ void AppIntoPage::setAppinfoTags(const QStringList &tagList) ui->tag_a2d->show(); } } - notifyUserUnsupportedTags(ubuntuSupport, deepinSupport, uosSupport); + notifyUserUnsupportedTags(ubuntuSupport, deepinSupport, uosSupport ,debianSupport); } -void AppIntoPage::notifyUserUnsupportedTags(bool ubuntuSupport, bool deepinSupport, bool uosSupport) +void AppIntoPage::notifyUserUnsupportedTags(bool ubuntuSupport, bool deepinSupport, bool uosSupport, bool debianSupport) { if (!SettingsPage::needUncompatibleNotification) { return; @@ -455,30 +462,21 @@ void AppIntoPage::notifyUserUnsupportedTags(bool ubuntuSupport, bool deepinSuppo bool checkdeepin = (isDeepin && !deepinSupport); bool checkuos = (isUOS && !uosSupport); bool isUbuntu = false; + bool isDebian = false; if (!checkdeepin && !checkuos) { - // 检查是否为 ubuntu 系统 - QFile lsb("/etc/lsb-release"); - if (!lsb.open(QIODevice::ReadOnly)) - { - qDebug() << "打开 /etc/lsb-release 失败"; - } - else { - QString lsbInfo = lsb.readAll(); // 因为使用 readAll 读取后会默认跳转到文件末尾导致读出的数据为空,所以用单独一个 string 存储 - if (lsbInfo.contains("Ubuntu")) - { - isUbuntu = true; - lsb.close(); - } - else if (lsbInfo.contains("GXDE")) - { - // GXDE 使用 Ubuntu 的 tag - isUbuntu = true; - lsb.close(); - } + // 使用更可靠的/etc/os-release检测 + QFile osRelease("/etc/os-release"); + if (osRelease.open(QIODevice::ReadOnly)) { + QString content = osRelease.readAll(); + isUbuntu = content.contains("ID=ubuntu"); + isDebian = content.contains("ID=debian") || content.contains("ID_LIKE=debian"); // 合并Debian系检测 + osRelease.close(); } } + bool checkubuntu = (isUbuntu && !ubuntuSupport); + bool checkdebian = (isDebian && !debianSupport); if (checkdeepin) { @@ -492,12 +490,17 @@ void AppIntoPage::notifyUserUnsupportedTags(bool ubuntuSupport, bool deepinSuppo { Utils::sendNotification("spark-store", tr("Warning"), tr("The current application does not support or tested on Ubuntu, there may be problems")); } - else if (!isUbuntu && !isDeepin && !isUOS) + else if (checkdebian) + { + Utils::sendNotification("spark-store", tr("Warning"), tr("The current application does not support or tested on Debian, there may be problems")); + } + if (!isUbuntu && !isDeepin && !isUOS && !isDebian) { Utils::sendNotification("spark-store", tr("Warning"), tr("The current application does not support or tested on current platform, there may be problems")); } return; + } void AppIntoPage::on_downloadButton_clicked() diff --git a/src/pages/appintopage.h b/src/pages/appintopage.h index d2306e6..0f54854 100644 --- a/src/pages/appintopage.h +++ b/src/pages/appintopage.h @@ -29,7 +29,7 @@ private: void initConnections(); void isDownloading(const QUrl &url); void setAppinfoTags(const QStringList &tagList); - void notifyUserUnsupportedTags(bool ubuntuSupport, bool deepinSupport, bool uosSupport); + void notifyUserUnsupportedTags(bool ubuntuSupport, bool deepinSupport, bool uosSupport, bool debianSupport); signals: void clickedDownloadBtn(); diff --git a/src/pages/appintopage.ui b/src/pages/appintopage.ui index bb82364..24b5bf1 100644 --- a/src/pages/appintopage.ui +++ b/src/pages/appintopage.ui @@ -160,7 +160,6 @@ 14 - 75 true @@ -413,7 +412,7 @@ <html><head/><body><p>This app is developed by community user,we give this tag to honor those who contribute to the Linux Ecology</p></body></html> - <html><head/><body><p><img src=":/tags/community-small.png"/></p></body></html> + <html><head/><body><p><img src=":/tags/community.svg" height=30 width=30 /></p></body></html> @@ -432,7 +431,7 @@ <html><head/><body><p>Capable to Ubuntu 22.04</p></body></html> - <html><head/><body><p><img src=":/tags/ubuntu-small.png"/></p></body></html> + <html><head/><body><p><img src=":/tags/ubuntu.png" width=30 height=30 /></p></body></html> @@ -451,7 +450,7 @@ <html><head/><body><p>Capable to UOS home 20</p></body></html> - <html><head/><body><p><img src=":/tags/uos-small.png"/></p></body></html> + <html><head/><body><p><img src=":/tags/uos-authorize.svg" height=30 width=30 /></p></body></html> @@ -489,7 +488,7 @@ <html><head/><body><p>This is a DTK5 app,which means it would have better effect on Deepin Desktop Environment</p></body></html> - <html><head/><body><p><img src=":/tags/dtk-small.png"/></p></body></html> + <html><head/><body><p><img src=":/tags/logo_icon.svg" height=30 width=30 /></p></body></html> @@ -508,7 +507,7 @@ <html><head/><body><p>Capable to deepin 20</p></body></html> - <html><head/><body><p><img src=":/tags/deepin-small.png"/></p></body></html> + <html><head/><body><p><img src=":/tags/deepin.svg" height=30 width=30 /></p></body></html> @@ -527,7 +526,7 @@ <html><head/><body><p>An Appimage to deb app.</p></body></html> - <html><head/><body><p><img src=":/tags/a2d-small.png"/></p></body></html> + <html><head/><body><p><img src=":/tags/a2d.png"height=30 width=30 /></p></body></html> @@ -546,7 +545,17 @@ <html><head/><body><p>A Wine app.Spark Store will automatically configure the wine kit for you</p></body></html> - <html><head/><body><p><img src=":/tags/dwine5-small.png"/></p></body></html> + <html><head/><body><p><img src=":/tags/dwine5.svg" height=30 width=30 /></p></body></html> + + + + + + + <html><head/><body><p>Capable to Debian Stable</p></body></html> + + + <html><head/><body><p><img src=":/tags/debian.svg" height="30" width="30"/></p></body></html> @@ -676,7 +685,7 @@ 0 0 - 482 + 477 601 @@ -757,7 +766,6 @@ 12 - 75 true @@ -895,7 +903,6 @@ 12 - 75 true @@ -1060,7 +1067,6 @@ QListWidget::item::selected 12 - 75 true diff --git a/src/spark-store.pro b/src/spark-store.pro index 481c4db..e6ffa3e 100644 --- a/src/spark-store.pro +++ b/src/spark-store.pro @@ -106,3 +106,5 @@ TRANSLATIONS += \ qnx: target.path = /tmp/$${TARGET}/bin else: unix:!android: target.path = /opt/durapps/$${TARGET}/bin !isEmpty(target.path): INSTALLS += target + +DISTFILES += From 86f8a3b501de951710e5bf5153c9505800ec7e37 Mon Sep 17 00:00:00 2001 From: shenmo Date: Mon, 24 Feb 2025 21:12:54 +0800 Subject: [PATCH 2/3] translate --- translations/spark-store_en.ts | 194 ++++++++++++++++-------------- translations/spark-store_es.ts | 194 ++++++++++++++++-------------- translations/spark-store_fr.ts | 194 ++++++++++++++++-------------- translations/spark-store_zh_CN.ts | 194 ++++++++++++++++-------------- translations/spark-store_zh_TW.ts | 194 ++++++++++++++++-------------- 5 files changed, 525 insertions(+), 445 deletions(-) diff --git a/translations/spark-store_en.ts b/translations/spark-store_en.ts index 82075d7..9932a13 100644 --- a/translations/spark-store_en.ts +++ b/translations/spark-store_en.ts @@ -9,169 +9,179 @@ - + Uninstall - + 0 0B {0?} - + Download Times - - + + <html><head/><body><p>This app is developed by community user,we give this tag to honor those who contribute to the Linux Ecology</p></body></html> - - <html><head/><body><p><img src=":/tags/community-small.png"/></p></body></html> - - - - - <html><head/><body><p><img src=":/tags/ubuntu-small.png"/></p></body></html> - - - - - + + <html><head/><body><p>Capable to UOS home 20</p></body></html> - - <html><head/><body><p><img src=":/tags/uos-small.png"/></p></body></html> - - - - - + + <html><head/><body><p>A deepin-wine2 app. Spark Store will automatically configure the wine kit for you.</p></body></html> - + <html><head/><body><p><img src=":/tags/dwine2-small.png"/></p></body></html> - - + + <html><head/><body><p>This is a DTK5 app,which means it would have better effect on Deepin Desktop Environment</p></body></html> - - <html><head/><body><p><img src=":/tags/dtk-small.png"/></p></body></html> - - - - - + + <html><head/><body><p>Capable to deepin 20</p></body></html> - - <html><head/><body><p><img src=":/tags/deepin-small.png"/></p></body></html> - - - - - + + <html><head/><body><p>An Appimage to deb app.</p></body></html> - - <html><head/><body><p><img src=":/tags/a2d-small.png"/></p></body></html> - - - - - <html><head/><body><p><img src=":/tags/dwine5-small.png"/></p></body></html> - - - - + Share Spk share link - + APP Feedback - + Introduction - + Description - + Screen capture - + - - - + + + Download and Install - - + + <html><head/><body><p><img src=":/tags/community.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p>Capable to Ubuntu 22.04</p></body></html> - - + + <html><head/><body><p><img src=":/tags/ubuntu.png" width=30 height=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/uos-authorize.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/logo_icon.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/deepin.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/a2d.png"height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p>A Wine app.Spark Store will automatically configure the wine kit for you</p></body></html> - + + <html><head/><body><p><img src=":/tags/dwine5.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p>Capable to Debian Stable</p></body></html> + + + + + <html><head/><body><p><img src=":/tags/debian.svg" height="30" width="30"/></p></body></html> + + + + Update - + Contributor - + Pkgname - + Author - + Size - + Website @@ -187,15 +197,15 @@ - - + + Reinstall - - + + Launch @@ -205,57 +215,63 @@ - - + + Install - + Installing - - - - + + + + + Warning - + The current application does not support or tested on deepin, there may be problems - + The current application does not support or tested on UOS, there may be problems - + The current application does not support or tested on Ubuntu, there may be problems - + + The current application does not support or tested on Debian, there may be problems + + + + The current application does not support or tested on current platform, there may be problems - - + + Spark Store - + Uninstall succeeded - + The URL has been copied to the clipboard diff --git a/translations/spark-store_es.ts b/translations/spark-store_es.ts index ea5688a..bc77882 100644 --- a/translations/spark-store_es.ts +++ b/translations/spark-store_es.ts @@ -9,169 +9,179 @@ Tipo - + Uninstall Desinstalar - + 0 0 - + Download Times Número de descargas - - + + <html><head/><body><p>This app is developed by community user,we give this tag to honor those who contribute to the Linux Ecology</p></body></html> <html><head/><body><p>Esta aplicación fue desarrollada por usuarios de la comunidad y la Etiquetamos en honor a aquellos que contribuyeron a la ecología de linux.</p></body></html> - - <html><head/><body><p><img src=":/tags/community-small.png"/></p></body></html> - <html><head/><body><p><img src=":/tags/community-small.png"/></p></body></html> - - - - <html><head/><body><p><img src=":/tags/ubuntu-small.png"/></p></body></html> - <html><head/><body><p><img src=":/tags/ubuntu-small.png"/></p></body></html> - - - - + + <html><head/><body><p>Capable to UOS home 20</p></body></html> <html><head/><body><p>Capaz de UOS home 20</p></body></html> - - <html><head/><body><p><img src=":/tags/uos-small.png"/></p></body></html> - <html><head/><body><p><img src=":/tags/uos-small.png"/></p></body></html> - - - - + + <html><head/><body><p>A deepin-wine2 app. Spark Store will automatically configure the wine kit for you.</p></body></html> <html><head/><body><p>A deepin-wine2 app. La tienda Spark le configurará automáticamente un traje de vino.</p></body></html> - + <html><head/><body><p><img src=":/tags/dwine2-small.png"/></p></body></html> <html><head/><body><p><img src=":/tags/dwine2-small.png"/></p></body></html> - - + + <html><head/><body><p>This is a DTK5 app,which means it would have better effect on Deepin Desktop Environment</p></body></html> <html><head/><body><p>Esta es una aplicación dtk5, lo que significa que funcionará mejor en un entorno de escritorio profundo.</p></body></html> - - <html><head/><body><p><img src=":/tags/dtk-small.png"/></p></body></html> - <html><head/><body><p><img src=":/tags/dtk-small.png"/></p></body></html> - - - - + + <html><head/><body><p>Capable to deepin 20</p></body></html> <html><head/><body><p>Capaz de deepin 20</p></body></html> - - <html><head/><body><p><img src=":/tags/deepin-small.png"/></p></body></html> - <html><head/><body><p><img src=":/tags/deepin-small.png"/></p></body></html> - - - - + + <html><head/><body><p>An Appimage to deb app.</p></body></html> <html><head/><body><p>Appimage de la aplicación deb.</p></body></html> - - <html><head/><body><p><img src=":/tags/a2d-small.png"/></p></body></html> - <html><head/><body><p><img src=":/tags/a2d-small.png"/></p></body></html> - - - - <html><head/><body><p><img src=":/tags/dwine5-small.png"/></p></body></html> - <html><head/><body><p><img src=":/tags/dwine5-small.png"/></p></body></html> - - - + Share Comunión - + APP Feedback Comentarios de la app - + Introduction Introducción - + Description Descripción - + Screen capture Captura de pantalla - + - - - + + + Download and Install Descargar e instalar - - + + <html><head/><body><p><img src=":/tags/community.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p>Capable to Ubuntu 22.04</p></body></html> <html><head/><body><p>Capaz de Ubuntu 22.04</p></body></html> - - + + <html><head/><body><p><img src=":/tags/ubuntu.png" width=30 height=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/uos-authorize.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/logo_icon.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/deepin.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/a2d.png"height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p>A Wine app.Spark Store will automatically configure the wine kit for you</p></body></html> <html><head/><body><p>La aplicación wine. Spark Store configurará automáticamente el kit Wine para usted</p></body></html> - + + <html><head/><body><p><img src=":/tags/dwine5.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p>Capable to Debian Stable</p></body></html> + + + + + <html><head/><body><p><img src=":/tags/debian.svg" height="30" width="30"/></p></body></html> + + + + Update Modernizar - + Contributor Contribuyentes - + Pkgname Nombre del embalaje - + Author Autor - + Size Tamaño - + Website Sitio web @@ -187,15 +197,15 @@ - - + + Reinstall Reinstalación - - + + Launch @@ -205,57 +215,63 @@ Actualización - - + + Install Instalación - + Installing Se está instalando - - - - + + + + + Warning Aviso - + The current application does not support or tested on deepin, there may be problems - + The current application does not support or tested on UOS, there may be problems - + The current application does not support or tested on Ubuntu, there may be problems - + + The current application does not support or tested on Debian, there may be problems + + + + The current application does not support or tested on current platform, there may be problems - - + + Spark Store SPARK Store - + Uninstall succeeded Desinstalación exitosa - + The URL has been copied to the clipboard La URL ha sido copiada al portapapeles diff --git a/translations/spark-store_fr.ts b/translations/spark-store_fr.ts index f5b6d83..1e62451 100644 --- a/translations/spark-store_fr.ts +++ b/translations/spark-store_fr.ts @@ -9,169 +9,179 @@ Type - + Uninstall Désinstaller - + 0 0 - + Download Times Nombre de téléchargements - - + + <html><head/><body><p>This app is developed by community user,we give this tag to honor those who contribute to the Linux Ecology</p></body></html> <html><head/><body><p>Cette application a été développée par des utilisateurs de la communauté et nous avons donné ce label à ceux qui ont contribué à l'écologie de Linux</p></body></html> - - <html><head/><body><p><img src=":/tags/community-small.png"/></p></body></html> - <html><head/><body><p><img src=":/tags/community-small.png"/></p></body></html> - - - - <html><head/><body><p><img src=":/tags/ubuntu-small.png"/></p></body></html> - <html><head/><body><p><img src=":/tags/ubuntu-small.png"/></p></body></html> - - - - + + <html><head/><body><p>Capable to UOS home 20</p></body></html> <html><head/><body><p>Capable de la home UOS 20</p></body></html> - - <html><head/><body><p><img src=":/tags/uos-small.png"/></p></body></html> - <html><head/><body><p><img src=":/tags/uos-small.png"/></p></body></html> - - - - + + <html><head/><body><p>A deepin-wine2 app. Spark Store will automatically configure the wine kit for you.</p></body></html> <html><head/><body><p>Une application deepin-wine2. Le Spark Store configure automatiquement votre pack de vins.</p></body></html> - + <html><head/><body><p><img src=":/tags/dwine2-small.png"/></p></body></html> <html><head/><body><p><img src=":/tags/dwine2-small.png"/></p></body></html> - - + + <html><head/><body><p>This is a DTK5 app,which means it would have better effect on Deepin Desktop Environment</p></body></html> <html><head/><body><p>C'est une application dtk5, ce qui signifie qu'elle fonctionnera mieux dans un environnement de bureau profond.</p></body></html> - - <html><head/><body><p><img src=":/tags/dtk-small.png"/></p></body></html> - <html><head/><body><p><img src=":/tags/dtk-small.png"/></p></body></html> - - - - + + <html><head/><body><p>Capable to deepin 20</p></body></html> <html><head/><body><p>Capable de la deepin 20</p></body></html> - - <html><head/><body><p><img src=":/tags/deepin-small.png"/></p></body></html> - <html><head/><body><p><img src=":/tags/deepin-small.png"/></p></body></html> - - - - + + <html><head/><body><p>An Appimage to deb app.</p></body></html> <html><head/><body><p>Appimage pour l'application DEB</p></body></html> - - <html><head/><body><p><img src=":/tags/a2d-small.png"/></p></body></html> - <html><head/><body><p><img src=":/tags/a2d-small.png"/></p></body></html> - - - - <html><head/><body><p><img src=":/tags/dwine5-small.png"/></p></body></html> - <html><head/><body><p><img src=":/tags/dwine5-small.png"/></p></body></html> - - - + Share Au total - + APP Feedback App feedback - + Introduction Présentation - + Description Description - + Screen capture Captures d'écran - + - - - + + + Download and Install Télécharger et installer - - + + <html><head/><body><p><img src=":/tags/community.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p>Capable to Ubuntu 22.04</p></body></html> <html><head/><body><p>Capable de la Ubuntu 22.04</p></body></html> - - + + <html><head/><body><p><img src=":/tags/ubuntu.png" width=30 height=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/uos-authorize.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/logo_icon.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/deepin.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/a2d.png"height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p>A Wine app.Spark Store will automatically configure the wine kit for you</p></body></html> <html><head/><body><p>L'application wine. Spark Store configure automatiquement le kit Wine pour vous</p></body></html> - + + <html><head/><body><p><img src=":/tags/dwine5.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p>Capable to Debian Stable</p></body></html> + + + + + <html><head/><body><p><img src=":/tags/debian.svg" height="30" width="30"/></p></body></html> + + + + Update Moderniser - + Contributor Contributeurs - + Pkgname Nom de l'emballage - + Author Auteur - + Size Taille - + Website Site Web @@ -187,15 +197,15 @@ - - + + Reinstall Réinstaller - - + + Launch @@ -205,57 +215,63 @@ Mise à niveau - - + + Install Installation - + Installing Installation en cours - - - - + + + + + Warning Avertissement - + The current application does not support or tested on deepin, there may be problems - + The current application does not support or tested on UOS, there may be problems - + The current application does not support or tested on Ubuntu, there may be problems - + + The current application does not support or tested on Debian, there may be problems + + + + The current application does not support or tested on current platform, there may be problems - - + + Spark Store Le Spark store - + Uninstall succeeded Désinstallation réussie - + The URL has been copied to the clipboard L'URL a été copiée dans le presse - papiers diff --git a/translations/spark-store_zh_CN.ts b/translations/spark-store_zh_CN.ts index bf7b0be..3765f74 100644 --- a/translations/spark-store_zh_CN.ts +++ b/translations/spark-store_zh_CN.ts @@ -9,169 +9,179 @@ - + Uninstall 卸载 - + 0 - + Download Times 下载量 - - + + <html><head/><body><p>This app is developed by community user,we give this tag to honor those who contribute to the Linux Ecology</p></body></html> <html><head/><body><p>这款应用是社区开发者开发的,我们为社区开发者颁发这款勋章以表彰他们对Linux生态的贡献</p></body></html> - - <html><head/><body><p><img src=":/tags/community-small.png"/></p></body></html> - - - - - <html><head/><body><p><img src=":/tags/ubuntu-small.png"/></p></body></html> - - - - - + + <html><head/><body><p>Capable to UOS home 20</p></body></html> <html><head/><body><p>支持UOS家庭版 20</p></body></html> - - <html><head/><body><p><img src=":/tags/uos-small.png"/></p></body></html> - - - - - + + <html><head/><body><p>A deepin-wine2 app. Spark Store will automatically configure the wine kit for you.</p></body></html> 这是一款 deepin-wine2 应用。星火商店会为你自动配置wine环境 - + <html><head/><body><p><img src=":/tags/dwine2-small.png"/></p></body></html> - - + + <html><head/><body><p>This is a DTK5 app,which means it would have better effect on Deepin Desktop Environment</p></body></html> <html><head/><body><p>这是一款DTK5应用,请使用深度桌面环境来获得最完美的体验</p></body></html> - - <html><head/><body><p><img src=":/tags/dtk-small.png"/></p></body></html> - - - - - + + <html><head/><body><p>Capable to deepin 20</p></body></html> <html><head/><body><p>支持deepin 20</p></body></html> - - <html><head/><body><p><img src=":/tags/deepin-small.png"/></p></body></html> - - - - - + + <html><head/><body><p>An Appimage to deb app.</p></body></html> <html><head/><body><p>这是一款Appimage转制应用.</p></body></html> - - <html><head/><body><p><img src=":/tags/a2d-small.png"/></p></body></html> - - - - - <html><head/><body><p><img src=":/tags/dwine5-small.png"/></p></body></html> - - - - + Share Spk分享链接 - + APP Feedback 应用反馈 - + Description 描述 - + Screen capture 屏幕截图 - + - - - + + + Download and Install 下载并安装 - - + + <html><head/><body><p><img src=":/tags/community.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p>Capable to Ubuntu 22.04</p></body></html> <html><head/><body><p>支持Ubuntu 22.04</p></body></html> - - + + <html><head/><body><p><img src=":/tags/ubuntu.png" width=30 height=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/uos-authorize.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/logo_icon.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/deepin.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/a2d.png"height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p>A Wine app.Spark Store will automatically configure the wine kit for you</p></body></html> 这是一款 Wine 应用。星火商店会为你自动配置wine环境 - + + <html><head/><body><p><img src=":/tags/dwine5.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p>Capable to Debian Stable</p></body></html> + <html><head/><body><p>支持Debian Stable</p></body></html> + + + + <html><head/><body><p><img src=":/tags/debian.svg" height="30" width="30"/></p></body></html> + + + + Introduction 介绍 - + Update 更新时间 - + Contributor 投稿用户 - + Pkgname 软件包名 - + Author 软件作者 - + Size 软件大小 - + Website 软件官网 @@ -187,15 +197,15 @@ - - + + Reinstall 重新安装 - - + + Launch 启动应用 @@ -205,57 +215,63 @@ 升级 - - + + Install 安装 - + Installing 正在安装 - - - - + + + + + Warning 警告 - + The current application does not support or tested on deepin, there may be problems 当前应用不支持或未在deepin上测试过,安装后可能会出现问题 - + The current application does not support or tested on UOS, there may be problems 当前应用不支持或未在UOS上测试过,安装后可能会出现问题 - + The current application does not support or tested on Ubuntu, there may be problems 当前应用不支持或未在Ubuntu上测试过,安装后可能会出现问题 - + + The current application does not support or tested on Debian, there may be problems + 当前应用不支持或未在Debian上测试过,安装后可能会出现问题 + + + The current application does not support or tested on current platform, there may be problems 当前应用不支持或未在您的平台上测试过,安装后可能会出现问题 - - + + Spark Store 星火应用商店 - + Uninstall succeeded 卸载成功 - + The URL has been copied to the clipboard 链接已复制到剪贴板 diff --git a/translations/spark-store_zh_TW.ts b/translations/spark-store_zh_TW.ts index 1490517..ddc6048 100644 --- a/translations/spark-store_zh_TW.ts +++ b/translations/spark-store_zh_TW.ts @@ -9,169 +9,179 @@ - + Uninstall 移除安裝 - + 0 - + Download Times 下載次數 - - + + <html><head/><body><p>This app is developed by community user,we give this tag to honor those who contribute to the Linux Ecology</p></body></html> <html><head/><body><p>这款应用是社区开发者开发的,我们为社区开发者颁发这款勋章以表彰他们对Linux生态的贡献</p></body></html> - - <html><head/><body><p><img src=":/tags/community-small.png"/></p></body></html> - - - - - <html><head/><body><p><img src=":/tags/ubuntu-small.png"/></p></body></html> - - - - - + + <html><head/><body><p>Capable to UOS home 20</p></body></html> <html><head/><body><p>支持UOS家庭版 20</p></body></html> - - <html><head/><body><p><img src=":/tags/uos-small.png"/></p></body></html> - - - - - + + <html><head/><body><p>A deepin-wine2 app. Spark Store will automatically configure the wine kit for you.</p></body></html> 这是一款 deepin-wine2 应用。星火商店会为你自动配置wine环境 - + <html><head/><body><p><img src=":/tags/dwine2-small.png"/></p></body></html> - - + + <html><head/><body><p>This is a DTK5 app,which means it would have better effect on Deepin Desktop Environment</p></body></html> <html><head/><body><p>这是一款DTK5应用,请使用深度桌面环境来获得最完美的体验</p></body></html> - - <html><head/><body><p><img src=":/tags/dtk-small.png"/></p></body></html> - - - - - + + <html><head/><body><p>Capable to deepin 20</p></body></html> <html><head/><body><p>支持deepin 20</p></body></html> - - <html><head/><body><p><img src=":/tags/deepin-small.png"/></p></body></html> - - - - - + + <html><head/><body><p>An Appimage to deb app.</p></body></html> <html><head/><body><p>这是一款Appimage转制应用.</p></body></html> - - <html><head/><body><p><img src=":/tags/a2d-small.png"/></p></body></html> - - - - - <html><head/><body><p><img src=":/tags/dwine5-small.png"/></p></body></html> - - - - + Share Spk共享链接 - + APP Feedback 軟件錯誤回報 - + Description 軟體詳細資料 - + Screen capture 軟體演示 - + - - - + + + Download and Install 下載並安裝 - - + + <html><head/><body><p><img src=":/tags/community.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p>Capable to Ubuntu 22.04</p></body></html> <html><head/><body><p>支持Ubuntu 22.04</p></body></html> - - + + <html><head/><body><p><img src=":/tags/ubuntu.png" width=30 height=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/uos-authorize.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/logo_icon.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/deepin.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p><img src=":/tags/a2d.png"height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p>A Wine app.Spark Store will automatically configure the wine kit for you</p></body></html> 这是一款 Wine 应用。星火商店会为你自动配置wine环境 - + + <html><head/><body><p><img src=":/tags/dwine5.svg" height=30 width=30 /></p></body></html> + + + + + <html><head/><body><p>Capable to Debian Stable</p></body></html> + + + + + <html><head/><body><p><img src=":/tags/debian.svg" height="30" width="30"/></p></body></html> + + + + Introduction 軟體介紹 - + Update 更新时间 - + Contributor 投稿用户 - + Pkgname 软件包名 - + Author 软件作者 - + Size 软件大小 - + Website 软件官网 @@ -187,15 +197,15 @@ - - + + Reinstall 重新安裝 - - + + Launch @@ -205,57 +215,63 @@ 升级 - - + + Install 安装 - + Installing 正在安装 - - - - + + + + + Warning - + The current application does not support or tested on deepin, there may be problems - + The current application does not support or tested on UOS, there may be problems - + The current application does not support or tested on Ubuntu, there may be problems - + + The current application does not support or tested on Debian, there may be problems + + + + The current application does not support or tested on current platform, there may be problems - - + + Spark Store 星火应用商店 - + Uninstall succeeded 卸载成功 - + The URL has been copied to the clipboard 链接已复制到剪贴板 From 992d1e702373eac685be6ea5802d60897d2b9105 Mon Sep 17 00:00:00 2001 From: shenmo Date: Mon, 24 Feb 2025 13:15:36 +0000 Subject: [PATCH 3/3] update debian/changelog. Signed-off-by: shenmo --- debian/changelog | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/changelog b/debian/changelog index 521ab0b..2d22aa2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,7 @@ spark-store (4.5.0) UNRELEASED; urgency=medium * 修复: distrobox下无法正常校验应用hash * aptss 4.5.0 * 应用更新新增进度条 + * 支持识别Debian -- shenmo Tue, 24 Sep 2024 11:27:08 +0800