diff --git a/DOCS/json-api-doc.md b/DOCS/json-api-doc.md new file mode 100644 index 0000000..859132d --- /dev/null +++ b/DOCS/json-api-doc.md @@ -0,0 +1,48 @@ +# 基本格式 +0. 应用信息 + +例子:https://cdn.d.store.deepinos.org.cn/store/tools/spark-store/app.json + +```json +{ + "Name": "星火应用商店", + "Version": "4.2.7.1", + "Filename": "spark-store_4.2.7.1_amd64.deb", + "Torrent_address": "spark-store_4.2.7.1_amd64.deb.torrent", + "Pkgname": "spark-store", + "Author": "shenmo ", + "Contributor": "shenmo ", + "Website": "https://www.spark-app.store/", + "Update": "2023-09-01 23:22:23", + "Size": "590.5 KB", + "More": "* 修复:aptss加锁失败现在会正常报错\n * 新增:在aptss的特定操作时添加了提示\n * 新增:在aptss提示加粗\n * 调整:ssinstall验证支持使用cdn.d.获取", + "Tags": "community;ubuntu;deepin;uos;dtk5", + "img_urls": "[\"https://examine-spark.oss-cn-shanghai.aliyuncs.com/images/2023/09/01/411c32fd691544bb985ecba87d151ea0.png\",\"https://examine-spark.oss-cn-shanghai.aliyuncs.com/images/2023/09/01/f44b3c2242c045e28f1161980d805e0d.png\",\"https://examine-spark.oss-cn-shanghai.aliyuncs.com/images/2023/09/01/00263ba857894667bd99240558bec69c.png\",\"https://examine-spark.oss-cn-shanghai.aliyuncs.com/images/2023/09/01/6fd248ad9eea4ef18c9c4acc2a9d372d.png\"]", + "icons": "https://examine-spark.oss-cn-shanghai.aliyuncs.com/icons/2023/09/01/a88dd18cc1734396a02e7e3c6be59718.png" +} +``` + +*注意:img_urls和icons的信息不保证有效!大部分是有效的,少部分app.json可能缺失此项目!* + +**对于icon和截图的获取需求请参考第三点** + +1. 对于某分类下的所有应用信息 +`{SOURCE_URL}/{ARCH}/{CATOGARY}/applist.json` +说明:SOURCE_URL:线路链接,目前推荐 https://cdn.d.store.deepinos.org.cn,你也可以使用其他的星火线路 +ARCH:架构文件夹 x86是store或amd64-store,arm是aarch64-store。特别的,如果你使用非https://cdn.d.store.deepinos.org.cn的线路,你可能会发现amd64-store会返回404,因为不是所有的服务器都支持软连接 +CATOGARY:分类目录。参考 https://gitee.com/deepin-community-store/spark-store/blob/dev/DOCS/spk-doc.md 中 store 直达的对应关系 + +例子:https://cdn.d.store.deepinos.org.cn/aarch64-store/tools/applist.json + +2. 对于单个应用的应用信息 +`{SOURCE_URL}/{ARCH}/{CATOGARY}/{Package Name}/app.json` +Package Name是包名。可从上级的applist.json读取 + +例子:https://cdn.d.store.deepinos.org.cn/store/tools/spark-store/app.json + +3. 对应用截图和icon的获取 + +`{SOURCE_URL}/{ARCH}/{CATOGARY}/{Package Name}/icon.png` +`{SOURCE_URL}/{ARCH}/{CATOGARY}/{Package Name}/screen_n.png`(n=1-5)(至少为1,不是所有的都有到5. 404是正常的) + + diff --git a/DOCS/spk-doc.md b/DOCS/spk-doc.md index 7536602..184e2ea 100644 --- a/DOCS/spk-doc.md +++ b/DOCS/spk-doc.md @@ -1,12 +1,14 @@ #### 调用参数(spk规则) -参数只有一个Url,该url应当遵循这种格式:`spk://<任意合法字符>/web分类/包名` +* store直达 + +该url应当遵循这种格式:`spk://store/web分类/包名` + -目前第一字段不进行处理,以后可能会对此识别。在目前阶段,这个字段可以填写任意合法字符 例如: -[spk://abcdefg/games/store.spark-app.hmcl](spk://abcdefg/games/store.spark-app.hmcl) +[spk://store/games/store.spark-app.hmcl](spk://store/games/store.spark-app.hmcl) 可选的web分类: @@ -25,3 +27,8 @@ | 工具 | tools | | 主题 | themes | | 其他 | others | + + +* search搜索 + +spk://search/pkgname diff --git a/debian/changelog b/debian/changelog index fa05cd1..5e98929 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +spark-store (4.2.7.2) stable; urgency=medium + + * 新增:内置在终端打开功能 + * 调整:散列验证更改为使用sha512 + + -- shenmo Sun, 5 Mar 2022 11:45:14 +0800 + + + spark-store (4.2.7.1) stable; urgency=medium * 修复:aptss加锁失败现在会正常报错 diff --git a/pkg/usr/share/applications/open-me-in-terminal.desktop b/pkg/usr/share/applications/open-me-in-terminal.desktop new file mode 100644 index 0000000..8502cbe --- /dev/null +++ b/pkg/usr/share/applications/open-me-in-terminal.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Categories=Development; +Encoding=UTF-8 +Exec=/opt/durapps/spark-store/bin/open-in-terminal/open-in-terminal %U +Icon=open-me-in-terminal +MimeType=application/x-desktop +Name=Open me in terminal +Name[zh_CN]=在终端中打开 +NoDisplay=true +StartupWMClass=在终端中打开 +Terminal=true +Type=Application diff --git a/pkg/usr/share/icons/hicolor/scalable/apps/open-me-in-terminal.png b/pkg/usr/share/icons/hicolor/scalable/apps/open-me-in-terminal.png new file mode 100644 index 0000000..993a76a Binary files /dev/null and b/pkg/usr/share/icons/hicolor/scalable/apps/open-me-in-terminal.png differ diff --git a/spark-store-project.pro b/spark-store-project.pro index 119364e..8cd67ff 100644 --- a/spark-store-project.pro +++ b/spark-store-project.pro @@ -41,16 +41,17 @@ qm.path = /usr/share/spark-store/translations bash_completion.files += pkg/usr/share/bash-completion/completions/aptss bash_completion.path = /usr/share/bash-completion/completions -desktop.files += pkg/usr/share/applications/spark-store.desktop +desktop.files += pkg/usr/share/applications/*.desktop desktop.path = /usr/share/applications service.files += pkg/usr/lib/systemd/system/spark-update-notifier.service service.path = /usr/lib/systemd/system/ -polkit-1.files +=pkg/usr/share/polkit-1/actions/store.spark-app.ss-do-upgrade-worker.policy +polkit-1.files += pkg/usr/share/polkit-1/actions/store.spark-app.ss-do-upgrade-worker.policy polkit-1.path = /usr/share/polkit-1/actions/ -icon.files += pkg/usr/share/icons/hicolor/scalable/apps/spark-store.svg +icon.files += pkg/usr/share/icons/hicolor/scalable/apps/*.svg +icon.files += pkg/usr/share/icons/hicolor/scalable/apps/*.png icon.path = /usr/share/icons/hicolor/scalable/apps ssinstall-transhell.files += pkg/usr/share/ssinstall/transhell diff --git a/tool/open-in-terminal/open-in-terminal b/tool/open-in-terminal/open-in-terminal new file mode 100755 index 0000000..f723f72 --- /dev/null +++ b/tool/open-in-terminal/open-in-terminal @@ -0,0 +1,28 @@ +#!/bin/bash +source /opt/durapps/spark-store/bin/bashimport/transhell.amber +load_transhell +# 检查是否传入了路径参数 +if [ -z "$1" ]; then + echo "${TRANSHELL_CONTENT_PLEASE_PROVIDE_FILE_PATH}" + exit 1 +fi +DESKTOP_FILE_PATH=$1 +if [[ $DESKTOP_FILE_PATH == file://* ]]; then + # 如果是,移除 'file://' 部分并输出结果 + DESKTOP_FILE_PATH="${DESKTOP_FILE_PATH#file://}" +fi + +# 获取文件内容中Exec=后的命令 +exec_command=$(grep -oP "(?<=Exec=).*" "$DESKTOP_FILE_PATH") + +# 打印提取的命令 +echo "$exec_command" + +# 在默认终端执行命令 +eval "$exec_command" + +echo -------------------------------------- +echo "${TRANSHELL_CONTENT_ABOVE_IS_TERMINAL_OUTPUT}" +echo "${TRANSHELL_CONTENT_PRESS_ENTER_TO_FINISH}" +read + diff --git a/tool/open-in-terminal/transhell/open-in-terminal_en_US.transhell b/tool/open-in-terminal/transhell/open-in-terminal_en_US.transhell new file mode 100644 index 0000000..0950339 --- /dev/null +++ b/tool/open-in-terminal/transhell/open-in-terminal_en_US.transhell @@ -0,0 +1,5 @@ +#!/bin/bash +TRANSHELL_CONTENT_PLEASE_PROVIDE_FILE_PATH="Please provide a file path as an argument" +TRANSHELL_CONTENT_ABOVE_IS_TERMINAL_OUTPUT="The above is the output executed in the terminal. Please copy and paste it when providing feedback." +TRANSHELL_CONTENT_PRESS_ENTER_TO_FINISH="Press Enter to finish" + diff --git a/tool/open-in-terminal/transhell/open-in-terminal_zh_CN.transhell b/tool/open-in-terminal/transhell/open-in-terminal_zh_CN.transhell new file mode 100644 index 0000000..e1682c2 --- /dev/null +++ b/tool/open-in-terminal/transhell/open-in-terminal_zh_CN.transhell @@ -0,0 +1,5 @@ +#!/bin/bash +TRANSHELL_CONTENT_PLEASE_PROVIDE_FILE_PATH="请传入文件路径作为参数" +TRANSHELL_CONTENT_ABOVE_IS_TERMINAL_OUTPUT="以上是在终端中执行的输出,请在反馈问题的时候完整复制并贴上" +TRANSHELL_CONTENT_PRESS_ENTER_TO_FINISH="按回车结束" + diff --git a/tool/ssinstall b/tool/ssinstall index 500abe7..590e0e9 100755 --- a/tool/ssinstall +++ b/tool/ssinstall @@ -63,11 +63,13 @@ fi -echo "正在计算hash并与星火仓库匹配..." +echo "正在运行包验证..." +echo "Running Spark Package Verify..." -DEB_MD5SUM=`md5sum "$1" | cut -c -32` +DEB_SHA512SUM=$(sha512sum "$1" | cut -d ' ' -f 1) -IS_MD5SUM_CHECKD=`cat $PACKAGES_DATA_PATH | grep $DEB_MD5SUM` + +IS_SHA512SUM_CHECKD=`cat $PACKAGES_DATA_PATH | grep $DEB_SHA512SUM` } @@ -103,13 +105,13 @@ DEBPATH=`realpath $1` hash_check "$DEBPATH" -if [ -z "$IS_MD5SUM_CHECKD" ];then +if [ -z "$IS_SHA512SUM_CHECKD" ];then echo "尝试更新仓库信息重新校验" aptss ssupdate hash_check "$DEBPATH" fi -if [ ! -z "$IS_MD5SUM_CHECKD" ];then +if [ ! -z "$IS_SHA512SUM_CHECKD" ];then echo "校验成功,开始安装" echo ---------------------------------------------------------------------------------- diff --git a/translations/spark-store_es.ts b/translations/spark-store_es.ts new file mode 100644 index 0000000..c4fe5c3 --- /dev/null +++ b/translations/spark-store_es.ts @@ -0,0 +1,663 @@ + + + + + AppIntoPage + + + Form + Tipo + + + + + + + Download + Descargar + + + + 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 + + + + + <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>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> + + + + Update + Modernizar + + + + Contributor + Contribuyentes + + + + Pkgname + Nombre del embalaje + + + + Author + Autor + + + + Size + Tamaño + + + + Website + Sitio web + + + + Click Open + Haga clic en "abrir" + + + + Developer Mode Disabled + Se ha desactivado el modo desarrollador + + + + + + Reinstall + Reinstalación + + + + Upgrade + Actualización + + + + + Install + Instalación + + + + Installing + Se está instalando + + + + + + + Warning + Aviso + + + + The current application does not support deepin, there may be problems + La aplicación actual no admite deepin, puede haber problemas + + + + The current application does not support UOS, there may be problems + La aplicación actual no admite uos, puede haber problemas + + + + The current application does not support Ubuntu, there may be problems + La aplicación actual no admite ubuntu, puede haber problemas + + + + The current application does not support current platform, there may be problems + La aplicación actual no admite la Plataforma actual, puede haber problemas + + + + + Spark Store + SPARK Store + + + + Uninstall succeeded + Desinstalación exitosa + + + + The URL has been copied to the clipboard + La URL ha sido copiada al portapapeles + + + + AppListPage + + + Form + Tipo + + + + about:blank + Sobre: en blanco + + + + DAboutDialog + + + Version: %1 + Versión %1 + + + + %1 is released under %2 + %1 publicado bajo %2 + + + + DownloadItem + + + Form + Tipo + + + + icon + ídolo + + + + TextLabel + Etiquetas de texto + + + + Name + Nombre + + + + Waiting to download + Esperando descargar + + + + Install + Instalación + + + + Cancel + Cancelación + + + + Info + Información + + + + + Download Complete. + Descarga completada. + + + + + + Spark Store + SPARK Store + + + + + Installing + Se está instalando + + + + Installation complete. + La instalación está completa. + + + + + Finish + Completado + + + + Retry + Reinterpretar + + + + + + Error happened in dpkg progress , please check the install info or try to reinstall. + Se produjo un error durante el proceso dpkg, verifique la información de instalación o intente reinstalar. + + + + + + dpkg progress had been aborted,please check the install info or try to reinstall. + El proceso dpkg ha sido abortado, verifique la información de instalación o intente reinstalarlo. + + + + + Download canceled + Descarga cancelada + + + + DownloadListWidget + + + Form + Tipo + + + + The list is currently empty. Go and download some softwares! + La lista está actualmente vacía. ¡Ve a descargar un poco de software! + + + + Open download directory + Abrir el catálogo de descargas + + + + MainWindow + + + MainWindow + Ventana principal + + + + Home + Casa + + + + Network + Red + + + + Chat + Charla + + + + Music + Música + + + + Video + Vídeo + + + + Picture + Foto + + + + Game + Juego + + + + Office + Oficina + + + + Reading + Leer + + + + Development + Desarrollo + + + + Tool + Herramientas + + + + Theme + Tema + + + + Other + Además + + + + APP Upgrade + Actualización de app + + + + Submit App + Presentación de la aplicación + + + + Submit App with client(Recommanded) + Enviar la aplicación al cliente (recomendación) + + + + Settings + Configuración + + + + APP Upgrade and Install Settings + Actualización e instalación de app + + + + + Spark Store + SPARK Store + + + + Search or enter spk:// + Buscar o introducir spk: /% + + + + QObject + + + + + Spark Store + SPARK Store + + + + <span style=' font-size:10pt;font-weight:60;'>An appstore powered by community</span><br/><a href='https://www.spark-app.store/'>https://www.spark-app.store</a><br/><span style=' font-size:12pt;'>Spark developers</span> + <span style=' font-size:10pt;font-weight:60;'>An appstore powered by community</span><br/><a href='https://www.spark-app.store/'>https://www.spark-app.store</a><br/><span style=' font-size:12pt;'>Spark developers</span> + + + + Spark Project + Proyecto spark + + + + Download list + Descargar lista + + + + Show MainWindow + Mostrar la ventana principal + + + + SettingsPage + + + Form + Tipo + + + + Line Settings + Configuración de la línea + + + + Choose Line: + Selección de líneas: + + + + Refresh + Refrescar + + + + Take effect immediately + Entrada en vigor inmediata + + + + <html><head/><body><p>Check update for Spark Store. </p></body></html> + <html><head/><body><p>Revisa las actualizaciones de la Spark Store. </p></body></html> + + + + Update + Modernizar + + + + Spark Store Update + Actualización de la tienda spark + + + + Other Settings + Otras configuraciones + + + + Enable notification for apps not compatible with current system + Habilitar notificaciones para aplicaciones incompatibles con el sistema actual + + + + Temp + Empleados temporales + + + + Since the dictionary is at /tmp,It would be cleaned automatically when system reboot. + Debido a que el diccionario se encuentra en / tmp, se limpia automáticamente cuando el sistema se reinicia. + + + + 0B + 0B + + + + Location:/tmp/spark-store + Ubicación: / TMP / Spark Storage + + + + Clean + Limpio + + + + Size: + Tamaño: + + + + Clear Web Cache + Borrar la caché web + + + + About us + Sobre nosotros + + + + <html><head/><body><p>We are <span style=" font-weight:600;">NOT</span> the official team, just like you, we are just one of the many Linux/deepin system enthusiasts and users, we develop and run the &quot;Spark Store&quot;! &quot;, is to bring the community together to share useful software, or to participate in development together, so that we all use the latest and greatest software. </p><p>We don't make a profit from this, all developers and maintainers don't get paid, and we rely on the community's donations to us for most of our expenses, which we are grateful for and which allow us not to spend too much energy worrying about funding. </p><p>Our service and software are free for everyone to use, communicate, and learn, but you must comply with local laws and regulations in the process of your use, otherwise any problems have nothing to do with us. </p><p>If any part of the store infringes your rights, please tell us <a href="mailto:jifengshenmo@outlook.com"><span style=" text-decoration: underline; color:#0082fa;">jifengshenmo@outlook.com</span></a> we will remove the infringing content as soon as possible. </p><p>If you'd like to get involved with us too, whether you're involved in development, design, pitching or submitting work, we welcome you to join us. </p> +<p><span style=" text-decoration: underline; color:#0000ff;"><br/></span>Our contact method can be found at <a href="https://blog.shenmo.tech/post/%E6%95%85%E9%9A%9C%E5%85%AC%E5%91%8A/"><span style=" text-decoration: underline; color:#0082fa;">Here</span></a></p></body></html> + + + + + Updating, please wait... + Se está actualizando, por favor Espere... + + + + Spark Store + SPARK Store + + + + Temporary cache was cleaned + Se ha limpiado la caché temporal + + + + TitleBarMenu + + + About + Sobre + + + + Exit + Exportaciones + + + diff --git a/translations/spark-store_fr.ts b/translations/spark-store_fr.ts index 7404e92..50f58ff 100644 --- a/translations/spark-store_fr.ts +++ b/translations/spark-store_fr.ts @@ -6,7 +6,7 @@ Form - + Type @@ -14,198 +14,198 @@ Download - + Télécharger Uninstall - + Désinstaller 0 - 0B {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 <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>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> Update - + Moderniser Contributor - + Contributeurs Pkgname - + Nom de l'emballage Author - + Auteur Size - + Taille Website - + Site Web Click Open - + Cliquez sur Ouvrir Developer Mode Disabled - + Mode développeur désactivé Reinstall - + Réinstaller Upgrade - + Mise à niveau Install - + Installation Installing - + Installation en cours @@ -213,43 +213,43 @@ Warning - + Avertissement The current application does not support deepin, there may be problems - + L'application actuelle ne supporte pas deepin, il peut y avoir un problème The current application does not support UOS, there may be problems - + L'application actuelle ne prend pas en charge uos, il peut y avoir un problème The current application does not support Ubuntu, there may be problems - + L'application actuelle ne supporte pas Ubuntu, il peut y avoir un problème The current application does not support current platform, there may be problems - + L'application actuelle ne prend pas en charge la plate - forme actuelle, il peut y avoir un problème 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 @@ -257,12 +257,12 @@ Form - + Type about:blank - + Re: vide @@ -270,12 +270,12 @@ Version: %1 - + Version: %1 %1 is released under %2 - + %1 publié sous %2 @@ -283,97 +283,97 @@ Form - + Type icon - + Idoles TextLabel - + Étiquettes de texte Name - + Le nom Waiting to download - + En attente de téléchargement Install - + Installation Cancel - + Annulation Info - + Informations Download Complete. - + Le téléchargement est terminé. Spark Store - + Le Spark store Installing - + Installation en cours Installation complete. - + L'installation est terminée. Finish - + Terminé Retry - + Essayez à nouveau Error happened in dpkg progress , please check the install info or try to reinstall. - + Une erreur s'est produite dans le processus dpkg, vérifiez les informations d'installation ou essayez de réinstaller. dpkg progress had been aborted,please check the install info or try to reinstall. - + Le processus dpkg a été abandonné, vérifiez les informations d'installation ou essayez de le réinstaller. Download canceled - + Le téléchargement a été annulé @@ -381,17 +381,17 @@ Form - + Type The list is currently empty. Go and download some softwares! - + La liste est actuellement vide. Allez télécharger quelques logiciels! Open download directory - + Ouvrir le catalogue de téléchargement @@ -399,108 +399,108 @@ MainWindow - + Fenêtre principale Home - + Maison Network - + Réseau Chat - + Bavarder Music - + Musique Video - + Vidéo Picture - + Photos Game - + Jeux Office - + Bureaux Reading - + Lire Development - + Développement Tool - + Outils Theme - + Thèmes Other - + En outre APP Upgrade - + Mise à niveau app Submit App - + Soumettre une application Submit App with client(Recommanded) - + Soumettre une demande au client (recommandé) Settings - + Paramètres APP Upgrade and Install Settings - + Paramètres de mise à niveau et d'installation de l'app Spark Store - + Le Spark store Search or enter spk:// - + Rechercher ou entrer SPK / @@ -510,27 +510,27 @@ Spark Store - + Le Spark store <span style=' font-size:10pt;font-weight:60;'>An appstore powered by community</span><br/><a href='https://www.spark-app.store/'>https://www.spark-app.store</a><br/><span style=' font-size:12pt;'>Spark developers</span> - + <span style=' font-size:10pt;font-weight:60;'>An appstore powered by community</span><br/><a href='https://www.spark-app.store/'>https://www.spark-app.store</a><br/><span style=' font-size:12pt;'>Spark developers</span> Spark Project - + Le projet Spark Download list - + Télécharger la Liste Show MainWindow - + Afficher la fenêtre principale @@ -538,113 +538,113 @@ Form - + Type Line Settings - + Configuration de la ligne Choose Line: - + Sélectionnez la ligne: Refresh - + Rafraîchir Take effect immediately - + Entrée en vigueur immédiate <html><head/><body><p>Check update for Spark Store. </p></body></html> - + <html><head/><body><p>Vérifiez les mises à jour sur le Spark Store. </p></body></html> Update - + Moderniser Spark Store Update - + Mise à jour du Spark store Other Settings - + Autres paramètres Enable notification for apps not compatible with current system - + Activer les notifications pour les applications incompatibles avec le système actuel Temp - + Employés temporaires Since the dictionary is at /tmp,It would be cleaned automatically when system reboot. - + Comme le dictionnaire se trouve dans / tmp, il est nettoyé automatiquement lorsque le système redémarre. 0B - 0B + 0B Location:/tmp/spark-store - + Emplacement: / tmp / Spark stockage Clean - + Nettoyé Size: - + Dimensions: Clear Web Cache - + Effacer le cache Web About us - + À propos de nous <html><head/><body><p>We are <span style=" font-weight:600;">NOT</span> the official team, just like you, we are just one of the many Linux/deepin system enthusiasts and users, we develop and run the &quot;Spark Store&quot;! &quot;, is to bring the community together to share useful software, or to participate in development together, so that we all use the latest and greatest software. </p><p>We don't make a profit from this, all developers and maintainers don't get paid, and we rely on the community's donations to us for most of our expenses, which we are grateful for and which allow us not to spend too much energy worrying about funding. </p><p>Our service and software are free for everyone to use, communicate, and learn, but you must comply with local laws and regulations in the process of your use, otherwise any problems have nothing to do with us. </p><p>If any part of the store infringes your rights, please tell us <a href="mailto:jifengshenmo@outlook.com"><span style=" text-decoration: underline; color:#0082fa;">jifengshenmo@outlook.com</span></a> we will remove the infringing content as soon as possible. </p><p>If you'd like to get involved with us too, whether you're involved in development, design, pitching or submitting work, we welcome you to join us. </p> <p><span style=" text-decoration: underline; color:#0000ff;"><br/></span>Our contact method can be found at <a href="https://blog.shenmo.tech/post/%E6%95%85%E9%9A%9C%E5%85%AC%E5%91%8A/"><span style=" text-decoration: underline; color:#0082fa;">Here</span></a></p></body></html> - + Updating, please wait... - + Mise à jour en cours, veuillez patienter... Spark Store - + Le Spark store Temporary cache was cleaned - + Cache temporaire nettoyé @@ -652,12 +652,12 @@ About - + À propos Exit - + Exportations