mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-10-12 21:32:21 +08:00
commit
d55e0002b4
@ -1,5 +1,5 @@
|
|||||||
# Spark App Store
|
# Spark App Store
|
||||||
[](https://gitee.com/deepin-community-store/spark-store/stargazers) [](https://gitee.com/deepin-community-store/spark-store/members)
|
[](https://gitee.com/spark-store-project/spark-store/stargazers) [](https://gitee.com/spark-store-project/spark-store/members)
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# 星火应用商店
|
# 星火应用商店
|
||||||
[](https://gitee.com/deepin-community-store/spark-store/stargazers) [](https://gitee.com/deepin-community-store/spark-store/members)
|
[](https://gitee.com/spark-store-project/spark-store/stargazers) [](https://gitee.com/spark-store-project/spark-store/members)
|
||||||
|
|
||||||
|
|
||||||
## 简介
|
## 简介
|
||||||
|
10
debian/changelog
vendored
10
debian/changelog
vendored
@ -1,3 +1,13 @@
|
|||||||
|
spark-store (4.2.9) stable; urgency=medium
|
||||||
|
|
||||||
|
* 修复:软件详情图片排序调整为服务器排序,而不是按加载顺序排序
|
||||||
|
* 修复: build error on Deepin V23
|
||||||
|
* 修复:容器内无限等待
|
||||||
|
* 新增:高分屏截图支持
|
||||||
|
* 新增:更新界面支持显示软件名称
|
||||||
|
|
||||||
|
-- shenmo <shenmo@spark-app.store> Sun, 5 Mar 2022 11:45:14 +0800
|
||||||
|
|
||||||
spark-store (4.2.8.1) stable; urgency=medium
|
spark-store (4.2.8.1) stable; urgency=medium
|
||||||
|
|
||||||
* 修复:A2D应用释放无效的Desktop到桌面上
|
* 修复:A2D应用释放无效的Desktop到桌面上
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
|
|
||||||
#include <QSettings>
|
#include <QSettings>
|
||||||
#include <QStandardPaths>
|
#include <QStandardPaths>
|
||||||
|
#include <QTranslator>
|
||||||
|
|
||||||
DCORE_USE_NAMESPACE
|
DCORE_USE_NAMESPACE
|
||||||
|
|
||||||
|
@ -150,6 +150,8 @@ void MainWindow::initTitleBar()
|
|||||||
|
|
||||||
searchEdit = new DSearchEdit(ui->titlebar);
|
searchEdit = new DSearchEdit(ui->titlebar);
|
||||||
searchEdit->setPlaceholderText(tr("Search or enter spk://"));
|
searchEdit->setPlaceholderText(tr("Search or enter spk://"));
|
||||||
|
searchEdit->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);
|
||||||
|
searchEdit->lineEdit()->setFixedWidth(350);
|
||||||
|
|
||||||
downloadButton = new ProgressButton(ui->titlebar);
|
downloadButton = new ProgressButton(ui->titlebar);
|
||||||
downloadButton->setDownloadListWidget(downloadlistwidget);
|
downloadButton->setDownloadListWidget(downloadlistwidget);
|
||||||
|
@ -76,7 +76,6 @@ void AppIntoPage::openUrl(const QUrl &url)
|
|||||||
manager->deleteLater(); });
|
manager->deleteLater(); });
|
||||||
|
|
||||||
// 获取截图
|
// 获取截图
|
||||||
|
|
||||||
for (int i = 0; i < 5 /* 魔法数字,最多五个截图 */; i++)
|
for (int i = 0; i < 5 /* 魔法数字,最多五个截图 */; i++)
|
||||||
{
|
{
|
||||||
QString imgUrl = pkgUrlBase + "/screen_" + QString::number(i + 1) + ".png";
|
QString imgUrl = pkgUrlBase + "/screen_" + QString::number(i + 1) + ".png";
|
||||||
@ -98,7 +97,7 @@ void AppIntoPage::openUrl(const QUrl &url)
|
|||||||
// img->setScaledContents(true);
|
// img->setScaledContents(true);
|
||||||
QListWidgetItem *pItem = new QListWidgetItem();
|
QListWidgetItem *pItem = new QListWidgetItem();
|
||||||
pItem->setSizeHint(QSize(280, 200));
|
pItem->setSizeHint(QSize(280, 200));
|
||||||
ui->listWidget->addItem(pItem);
|
ui->listWidget->insertItem(i, pItem);
|
||||||
ui->listWidget->setItemWidget(pItem, img);
|
ui->listWidget->setItemWidget(pItem, img);
|
||||||
qDebug() << imgUrl;
|
qDebug() << imgUrl;
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
#include "big_image.h"
|
#include "big_image.h"
|
||||||
|
#include "qapplication.h"
|
||||||
|
|
||||||
#include <QHBoxLayout>
|
#include <QHBoxLayout>
|
||||||
|
#include <QScreen>
|
||||||
#include <QtConcurrent>
|
#include <QtConcurrent>
|
||||||
|
|
||||||
big_image::big_image(DBlurEffectWidget *parent) : DBlurEffectWidget(parent),
|
big_image::big_image(DBlurEffectWidget *parent) : DBlurEffectWidget(parent),
|
||||||
@ -25,6 +27,8 @@ big_image::big_image(DBlurEffectWidget *parent) : DBlurEffectWidget(parent),
|
|||||||
|
|
||||||
void big_image::setimage(QPixmap image)
|
void big_image::setimage(QPixmap image)
|
||||||
{
|
{
|
||||||
|
QScreen *screen = QApplication::primaryScreen();
|
||||||
|
image.setDevicePixelRatio(screen->devicePixelRatio());
|
||||||
m_image->setPixmap(image);
|
m_image->setPixmap(image);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -114,7 +114,11 @@ fi
|
|||||||
# permissions.
|
# permissions.
|
||||||
# We need lock for non-root commands too, because we only have one download
|
# We need lock for non-root commands too, because we only have one download
|
||||||
# list file.
|
# list file.
|
||||||
LCK_FILE="/tmp/apt-fast"
|
if [ "$IS_ACE_ENV" != "" ];then
|
||||||
|
LCK_FILE="/tmp/apt-fast-in-container.lock"
|
||||||
|
else
|
||||||
|
LCK_FILE="/tmp/apt-fast.lock"
|
||||||
|
fi
|
||||||
LCK_FD=99
|
LCK_FD=99
|
||||||
|
|
||||||
# Set default package manager, APT cache, temporary download dir,
|
# Set default package manager, APT cache, temporary download dir,
|
||||||
@ -130,7 +134,11 @@ else
|
|||||||
fi
|
fi
|
||||||
# Currently not needed.
|
# Currently not needed.
|
||||||
eval "$(apt-config shell LISTDIR Dir::State::lists/d)"
|
eval "$(apt-config shell LISTDIR Dir::State::lists/d)"
|
||||||
|
if [ "$IS_ACE_ENV" != "" ];then
|
||||||
|
DLLIST="/tmp/apt-fast-in-container.list"
|
||||||
|
else
|
||||||
DLLIST="/tmp/apt-fast.list"
|
DLLIST="/tmp/apt-fast.list"
|
||||||
|
fi
|
||||||
_MAXNUM=5
|
_MAXNUM=5
|
||||||
_MAXCONPERSRV=10
|
_MAXCONPERSRV=10
|
||||||
_SPLITCON=8
|
_SPLITCON=8
|
||||||
|
@ -30,13 +30,13 @@ function create_desktop_file() {
|
|||||||
function exec_create_desktop_file() {
|
function exec_create_desktop_file() {
|
||||||
local user=$(who | awk '{print $1}' | head -n 1)
|
local user=$(who | awk '{print $1}' | head -n 1)
|
||||||
for desktop_file_path in $(dpkg -L "$package_name" |grep /usr/share/applications/ | awk '/\.desktop$/ {print}'); do
|
for desktop_file_path in $(dpkg -L "$package_name" |grep /usr/share/applications/ | awk '/\.desktop$/ {print}'); do
|
||||||
if [ "$(cat $desktop_file_path | grep NoDisplay=true)" = "" ];then
|
if [ "$(grep -m 1 '^NoDisplay=' "$desktop_file_path" | cut -d '=' -f 2)" = "true" ] || [ "$(grep -m 1 '^NoDisplay=' "$desktop_file_path" | cut -d '=' -f 2)" = "True" ];then
|
||||||
echo $desktop_file_path is checked and will be installed to desktop
|
echo $desktop_file_path is checked and will be installed to desktop
|
||||||
sudo -u "$user" cp "$desktop_file_path" "$(sudo -u "$user" xdg-user-dir DESKTOP)/"
|
sudo -u "$user" cp "$desktop_file_path" "$(sudo -u "$user" xdg-user-dir DESKTOP)/"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
for desktop_file_path in $(dpkg -L "$package_name" |grep /opt/apps/$package_name/entries/applications | awk '/\.desktop$/ {print}'); do
|
for desktop_file_path in $(dpkg -L "$package_name" |grep /opt/apps/$package_name/entries/applications | awk '/\.desktop$/ {print}'); do
|
||||||
if [ "$(cat $desktop_file_path | grep NoDisplay=true)" = "" ];then
|
if [ "$(grep -m 1 '^NoDisplay=' "$desktop_file_path" | cut -d '=' -f 2)" = "true" ] || [ "$(grep -m 1 '^NoDisplay=' "$desktop_file_path" | cut -d '=' -f 2)" = "True" ];then
|
||||||
echo $desktop_file_path is checked and will be installed to desktop
|
echo $desktop_file_path is checked and will be installed to desktop
|
||||||
sudo -u "$user" cp "$desktop_file_path" "$(sudo -u "$user" xdg-user-dir DESKTOP)/"
|
sudo -u "$user" cp "$desktop_file_path" "$(sudo -u "$user" xdg-user-dir DESKTOP)/"
|
||||||
fi
|
fi
|
||||||
|
@ -3,7 +3,46 @@
|
|||||||
source /opt/durapps/spark-store/bin/bashimport/transhell.amber
|
source /opt/durapps/spark-store/bin/bashimport/transhell.amber
|
||||||
load_transhell_debug
|
load_transhell_debug
|
||||||
|
|
||||||
|
function get_name_from_desktop_file() {
|
||||||
|
local app_name_in_desktop
|
||||||
|
local name_orig
|
||||||
|
local name_i18n
|
||||||
|
local package_name
|
||||||
|
package_name=$1
|
||||||
|
for desktop_file_path in $(dpkg -L "$package_name" |grep /usr/share/applications/ | awk '/\.desktop$/ {print}'); do
|
||||||
|
if [ "$(grep -m 1 '^NoDisplay=' "$desktop_file_path" | cut -d '=' -f 2)" = "true" ] || [ "$(grep -m 1 '^NoDisplay=' "$desktop_file_path" | cut -d '=' -f 2)" = "True" ];then
|
||||||
|
continue
|
||||||
|
else
|
||||||
|
name_orig=$(grep -m 1 '^Name=' "$desktop_file_path" | cut -d '=' -f 2)
|
||||||
|
name_i18n=$(grep -m 1 "^Name\[${LANGUAGE}\]\=" "$desktop_file_path" | cut -d '=' -f 2)
|
||||||
|
if [ -z "$name_i18n" ] ;then
|
||||||
|
app_name_in_desktop=$name_orig
|
||||||
|
else
|
||||||
|
app_name_in_desktop=$name_i18n
|
||||||
|
fi
|
||||||
|
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
for desktop_file_path in $(dpkg -L "$package_name" |grep /opt/apps/$package_name/entries/applications | awk '/\.desktop$/ {print}'); do
|
||||||
|
if [ "$(grep -m 1 '^NoDisplay=' "$desktop_file_path" | cut -d '=' -f 2)" = "true" ] || [ "$(grep -m 1 '^NoDisplay=' "$desktop_file_path" | cut -d '=' -f 2)" = "True" ];then
|
||||||
|
continue
|
||||||
|
else
|
||||||
|
name_orig=$(grep -m 1 '^Name=' "$desktop_file_path" | cut -d '=' -f 2)
|
||||||
|
name_i18n=$(grep -m 1 "^Name\[${LANGUAGE}\]\=" "$desktop_file_path" | cut -d '=' -f 2)
|
||||||
|
if [ -z "$name_i18n" ] ;then
|
||||||
|
app_name_in_desktop=$name_orig
|
||||||
|
else
|
||||||
|
app_name_in_desktop=$name_i18n
|
||||||
|
fi
|
||||||
|
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
if [ -z "$app_name_in_desktop" ] ;then
|
||||||
|
app_name_in_desktop=${package_name}
|
||||||
|
fi
|
||||||
|
echo ${app_name_in_desktop}
|
||||||
|
|
||||||
|
}
|
||||||
touch /tmp/spark-store/upgradeStatus.txt
|
touch /tmp/spark-store/upgradeStatus.txt
|
||||||
|
|
||||||
# 执行 apt update
|
# 执行 apt update
|
||||||
@ -30,7 +69,7 @@ else
|
|||||||
IFS_OLD="$IFS"
|
IFS_OLD="$IFS"
|
||||||
IFS=$'\n'
|
IFS=$'\n'
|
||||||
|
|
||||||
PKG_UPGRADE_LIST=`for line in $PKG_LIST ; do
|
PKG_UPGRADE_LIST=$(for line in $PKG_LIST ; do
|
||||||
PKG_NAME=$(echo $line | awk -F ' ' '{print $1}')
|
PKG_NAME=$(echo $line | awk -F ' ' '{print $1}')
|
||||||
PKG_NEW_VER=$(echo $line | awk -F ' ' '{print $2}')
|
PKG_NEW_VER=$(echo $line | awk -F ' ' '{print $2}')
|
||||||
PKG_CUR_VER=$(echo $line | awk -F ' ' '{print $3}')
|
PKG_CUR_VER=$(echo $line | awk -F ' ' '{print $3}')
|
||||||
@ -39,20 +78,23 @@ else
|
|||||||
if [ $? -eq 0 ] ; then
|
if [ $? -eq 0 ] ; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
|
APP_NAME=$(get_name_from_desktop_file $PKG_NAME)
|
||||||
#### 检测是否是 hold 状态
|
#### 检测是否是 hold 状态
|
||||||
PKG_STA=$(dpkg-query -W -f='${db:Status-Want}' $PKG_NAME)
|
PKG_STA=$(dpkg-query -W -f='${db:Status-Want}' $PKG_NAME)
|
||||||
if [ "$PKG_STA" != "hold" ] ; then
|
if [ "$PKG_STA" != "hold" ] ; then
|
||||||
echo "true"
|
echo "true"
|
||||||
echo "$PKG_NAME"
|
echo "$APP_NAME"
|
||||||
echo "$PKG_NEW_VER"
|
echo "$PKG_NEW_VER"
|
||||||
echo "$PKG_CUR_VER"
|
echo "$PKG_CUR_VER"
|
||||||
|
echo "$PKG_NAME"
|
||||||
else
|
else
|
||||||
echo "false"
|
echo "false"
|
||||||
echo "$PKG_NAME${TRANSHELL_CONTENT_CAN_NOT_UPGRADE_FOR_BEING_HOLD}"
|
echo "$APP_NAME${TRANSHELL_CONTENT_CAN_NOT_UPGRADE_FOR_BEING_HOLD}"
|
||||||
echo "$PKG_NEW_VER"
|
echo "$PKG_NEW_VER"
|
||||||
echo "$PKG_CUR_VER"
|
echo "$PKG_CUR_VER"
|
||||||
|
echo "$PKG_NAME"
|
||||||
fi
|
fi
|
||||||
done`
|
done)
|
||||||
|
|
||||||
### 还原分隔符
|
### 还原分隔符
|
||||||
IFS="$IFS_OLD"
|
IFS="$IFS_OLD"
|
||||||
@ -61,13 +103,14 @@ done`
|
|||||||
if [ -z "$PKG_UPGRADE_LIST" ] ; then
|
if [ -z "$PKG_UPGRADE_LIST" ] ; then
|
||||||
zenity --info --text "${TRANSHELL_CONTENT_NO_NEED_TO_UPGRADE}" --title "${TRANSHELL_CONTENT_SPARK_STORE_UPGRADE_MODEL}" --height 150 --width 300 --window-icon=/usr/share/icons/hicolor/scalable/apps/spark-store.svg
|
zenity --info --text "${TRANSHELL_CONTENT_NO_NEED_TO_UPGRADE}" --title "${TRANSHELL_CONTENT_SPARK_STORE_UPGRADE_MODEL}" --height 150 --width 300 --window-icon=/usr/share/icons/hicolor/scalable/apps/spark-store.svg
|
||||||
else
|
else
|
||||||
PKG_UPGRADE_LIST=$(echo "$PKG_UPGRADE_LIST" | zenity --list --text="${TRANSHELL_CONTENT_CHOOSE_APP_TO_UPGRADE}" --column="${TRANSHELL_CONTENT_CHOOSE}" --column="${TRANSHELL_CONTENT_PKG_NAME}" --column="${TRANSHELL_CONTENT_NEW_VERSION}" --column="${TRANSHELL_CONTENT_UPGRADE_FROM}" --separator=" " --checklist --multiple --print-column=2 --height 350 --width 550 --window-icon=/usr/share/icons/hicolor/scalable/apps/spark-store.svg)
|
PKG_UPGRADE_LIST=$(echo "$PKG_UPGRADE_LIST" | zenity --list --text="${TRANSHELL_CONTENT_CHOOSE_APP_TO_UPGRADE}" --column="${TRANSHELL_CONTENT_CHOOSE}" --column="${TRANSHELL_CONTENT_APP_NAME}" --column="${TRANSHELL_CONTENT_NEW_VERSION}" --column="${TRANSHELL_CONTENT_UPGRADE_FROM}" --column="${TRANSHELL_CONTENT_PKG_NAME}" --separator=" " --checklist --multiple --print-column=5 --height 350 --width 650 --window-icon=/usr/share/icons/hicolor/scalable/apps/spark-store.svg)
|
||||||
## 如果没有选择,则直接退出
|
## 如果没有选择,则直接退出
|
||||||
if [ -z "$PKG_UPGRADE_LIST" ] ; then
|
if [ -z "$PKG_UPGRADE_LIST" ] ; then
|
||||||
zenity --info --text "${TRANSHELL_CONTENT_NO_APP_IS_CHOSEN}" --title "${TRANSHELL_CONTENT_SPARK_STORE_UPGRADE_MODEL}" --height 150 --width 300 --window-icon=/usr/share/icons/hicolor/scalable/apps/spark-store.svg
|
zenity --info --text "${TRANSHELL_CONTENT_NO_APP_IS_CHOSEN}" --title "${TRANSHELL_CONTENT_SPARK_STORE_UPGRADE_MODEL}" --height 150 --width 300 --window-icon=/usr/share/icons/hicolor/scalable/apps/spark-store.svg
|
||||||
else
|
else
|
||||||
### 更新用户选择的应用
|
### 更新用户选择的应用
|
||||||
for PKG_UPGRADE in $PKG_UPGRADE_LIST;do
|
for PKG_UPGRADE in $PKG_UPGRADE_LIST;do
|
||||||
|
$APP_UPGRADE=$(get_name_from_desktop_file $PKG_UPGRADE)
|
||||||
update_transhell
|
update_transhell
|
||||||
pkexec /opt/durapps/spark-store/bin/update-upgrade/ss-do-upgrade-worker.sh upgrade-app $PKG_UPGRADE -y | zenity --progress --auto-close --no-cancel --pulsate --text="${TRANSHELL_CONTENT_UPGRADING_PLEASE_WAIT}" --height 70 --width 400 --title="${TRANSHELL_CONTENT_SPARK_STORE_UPGRADE_MODEL}" --window-icon=/usr/share/icons/hicolor/scalable/apps/spark-store.svg
|
pkexec /opt/durapps/spark-store/bin/update-upgrade/ss-do-upgrade-worker.sh upgrade-app $PKG_UPGRADE -y | zenity --progress --auto-close --no-cancel --pulsate --text="${TRANSHELL_CONTENT_UPGRADING_PLEASE_WAIT}" --height 70 --width 400 --title="${TRANSHELL_CONTENT_SPARK_STORE_UPGRADE_MODEL}" --window-icon=/usr/share/icons/hicolor/scalable/apps/spark-store.svg
|
||||||
done
|
done
|
||||||
|
@ -8,10 +8,11 @@ TRANSHELL_CONTENT_NO_NEED_TO_UPGRADE="All APPs are up to date.\nBut you are not
|
|||||||
TRANSHELL_CONTENT_CAN_NOT_UPGRADE_FOR_BEING_HOLD="(Unable to upgrade: Being marked as hold)"
|
TRANSHELL_CONTENT_CAN_NOT_UPGRADE_FOR_BEING_HOLD="(Unable to upgrade: Being marked as hold)"
|
||||||
TRANSHELL_CONTENT_CHOOSE_APP_TO_UPGRADE="Choose the app you want to upgrade"
|
TRANSHELL_CONTENT_CHOOSE_APP_TO_UPGRADE="Choose the app you want to upgrade"
|
||||||
TRANSHELL_CONTENT_CHOOSE="Choose"
|
TRANSHELL_CONTENT_CHOOSE="Choose"
|
||||||
TRANSHELL_CONTENT_PKG_NAME="Pkg name"
|
TRANSHELL_CONTENT_APP_NAME="APP name"
|
||||||
|
TRANSHELL_CONTENT_PKG_NAME="Package Name"
|
||||||
TRANSHELL_CONTENT_NEW_VERSION="New version"
|
TRANSHELL_CONTENT_NEW_VERSION="New version"
|
||||||
TRANSHELL_CONTENT_UPGRADE_FROM="Upgrade from"
|
TRANSHELL_CONTENT_UPGRADE_FROM="Upgrade from"
|
||||||
TRANSHELL_CONTENT_NO_APP_IS_CHOSEN="No app is chosen\nBut you are not at the top of the world"
|
TRANSHELL_CONTENT_NO_APP_IS_CHOSEN="No app is chosen\nBut you are not at the top of the world"
|
||||||
TRANSHELL_CONTENT_UPGRADING_PLEASE_WAIT="Upgrading $PKG_UPGRADE , please wait..."
|
TRANSHELL_CONTENT_UPGRADING_PLEASE_WAIT="Upgrading $APP_UPGRADE , please wait..."
|
||||||
TRANSHELL_CONTENT_CHOSEN_APP_UPGRADE_FINISHED="The chosen app is upgraded"
|
TRANSHELL_CONTENT_CHOSEN_APP_UPGRADE_FINISHED="The chosen app is upgraded"
|
||||||
TRANSHELL_CONTENT_APP_UGRADE_PROCESS_ERROR_PRESS_CONFIRM_TO_CHECK="Error occured when upgrading! Press Confirm to get the error log (Can be useful when feedback)"
|
TRANSHELL_CONTENT_APP_UGRADE_PROCESS_ERROR_PRESS_CONFIRM_TO_CHECK="Error occured when upgrading! Press Confirm to get the error log (Can be useful when feedback)"
|
||||||
|
@ -8,10 +8,11 @@ TRANSHELL_CONTENT_NO_NEED_TO_UPGRADE="没有软件需要更新\n但是你并没
|
|||||||
TRANSHELL_CONTENT_CAN_NOT_UPGRADE_FOR_BEING_HOLD="(无法更新:已被标记为保留)"
|
TRANSHELL_CONTENT_CAN_NOT_UPGRADE_FOR_BEING_HOLD="(无法更新:已被标记为保留)"
|
||||||
TRANSHELL_CONTENT_CHOOSE_APP_TO_UPGRADE="选择你想更新的应用"
|
TRANSHELL_CONTENT_CHOOSE_APP_TO_UPGRADE="选择你想更新的应用"
|
||||||
TRANSHELL_CONTENT_CHOOSE="选择"
|
TRANSHELL_CONTENT_CHOOSE="选择"
|
||||||
|
TRANSHELL_CONTENT_APP_NAME="应用名"
|
||||||
TRANSHELL_CONTENT_PKG_NAME="包名"
|
TRANSHELL_CONTENT_PKG_NAME="包名"
|
||||||
TRANSHELL_CONTENT_NEW_VERSION="新版本"
|
TRANSHELL_CONTENT_NEW_VERSION="新版本"
|
||||||
TRANSHELL_CONTENT_UPGRADE_FROM="从该版本更新"
|
TRANSHELL_CONTENT_UPGRADE_FROM="从该版本更新"
|
||||||
TRANSHELL_CONTENT_NO_APP_IS_CHOSEN="没有选中任何软件\n但是你并没有站在世界之巅"
|
TRANSHELL_CONTENT_NO_APP_IS_CHOSEN="没有选中任何软件\n但是你并没有站在世界之巅"
|
||||||
TRANSHELL_CONTENT_UPGRADING_PLEASE_WAIT="正在更新 $PKG_UPGRADE ,请稍候..."
|
TRANSHELL_CONTENT_UPGRADING_PLEASE_WAIT="正在更新 $APP_UPGRADE ,请稍候..."
|
||||||
TRANSHELL_CONTENT_CHOSEN_APP_UPGRADE_FINISHED="选中的软件已经更新完毕"
|
TRANSHELL_CONTENT_CHOSEN_APP_UPGRADE_FINISHED="选中的软件已经更新完毕"
|
||||||
TRANSHELL_CONTENT_APP_UGRADE_PROCESS_ERROR_PRESS_CONFIRM_TO_CHECK="更新出现错误!按确定查看报错,可用于反馈"
|
TRANSHELL_CONTENT_APP_UGRADE_PROCESS_ERROR_PRESS_CONFIRM_TO_CHECK="更新出现错误!按确定查看报错,可用于反馈"
|
||||||
|
@ -8,10 +8,11 @@ TRANSHELL_CONTENT_NO_NEED_TO_UPGRADE="沒有軟體需要更新\n但是你並沒
|
|||||||
TRANSHELL_CONTENT_CAN_NOT_UPGRADE_FOR_BEING_HOLD="(无法更新:已被标记为保留)"
|
TRANSHELL_CONTENT_CAN_NOT_UPGRADE_FOR_BEING_HOLD="(无法更新:已被标记为保留)"
|
||||||
TRANSHELL_CONTENT_CHOOSE_APP_TO_UPGRADE="选择你想更新的应用"
|
TRANSHELL_CONTENT_CHOOSE_APP_TO_UPGRADE="选择你想更新的应用"
|
||||||
TRANSHELL_CONTENT_CHOOSE="选择"
|
TRANSHELL_CONTENT_CHOOSE="选择"
|
||||||
|
TRANSHELL_CONTENT_APP_NAME="应用名"
|
||||||
TRANSHELL_CONTENT_PKG_NAME="包名"
|
TRANSHELL_CONTENT_PKG_NAME="包名"
|
||||||
TRANSHELL_CONTENT_NEW_VERSION="新版本"
|
TRANSHELL_CONTENT_NEW_VERSION="新版本"
|
||||||
TRANSHELL_CONTENT_UPGRADE_FROM="从该版本更新"
|
TRANSHELL_CONTENT_UPGRADE_FROM="从该版本更新"
|
||||||
TRANSHELL_CONTENT_NO_APP_IS_CHOSEN="没有选中任何軟體\n但是你並沒有站在世界之巔"
|
TRANSHELL_CONTENT_NO_APP_IS_CHOSEN="没有选中任何軟體\n但是你並沒有站在世界之巔"
|
||||||
TRANSHELL_CONTENT_UPGRADING_PLEASE_WAIT="正在更新 $PKG_UPGRADE ,请稍候..."
|
TRANSHELL_CONTENT_UPGRADING_PLEASE_WAIT="正在更新 $APP_UPGRADE ,请稍候..."
|
||||||
TRANSHELL_CONTENT_CHOSEN_APP_UPGRADE_FINISHED="选中的軟體已经更新完毕"
|
TRANSHELL_CONTENT_CHOSEN_APP_UPGRADE_FINISHED="选中的軟體已经更新完毕"
|
||||||
TRANSHELL_CONTENT_APP_UGRADE_PROCESS_ERROR_PRESS_CONFIRM_TO_CHECK="更新出现错误!按确定查看报错,可用于反馈"
|
TRANSHELL_CONTENT_APP_UGRADE_PROCESS_ERROR_PRESS_CONFIRM_TO_CHECK="更新出现错误!按确定查看报错,可用于反馈"
|
||||||
|
@ -126,9 +126,9 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.ui" line="244"/>
|
<location filename="../src/pages/appintopage.ui" line="244"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="175"/>
|
<location filename="../src/pages/appintopage.cpp" line="174"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="313"/>
|
<location filename="../src/pages/appintopage.cpp" line="312"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="483"/>
|
<location filename="../src/pages/appintopage.cpp" line="482"/>
|
||||||
<source>Download and Install</source>
|
<source>Download and Install</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
@ -180,74 +180,74 @@
|
|||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="114"/>
|
<location filename="../src/pages/appintopage.cpp" line="113"/>
|
||||||
<source>Developer Mode Disabled</source>
|
<source>Developer Mode Disabled</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="160"/>
|
<location filename="../src/pages/appintopage.cpp" line="159"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="329"/>
|
<location filename="../src/pages/appintopage.cpp" line="328"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="456"/>
|
<location filename="../src/pages/appintopage.cpp" line="455"/>
|
||||||
<source>Reinstall</source>
|
<source>Reinstall</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="167"/>
|
<location filename="../src/pages/appintopage.cpp" line="166"/>
|
||||||
<source>Upgrade</source>
|
<source>Upgrade</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="318"/>
|
<location filename="../src/pages/appintopage.cpp" line="317"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="432"/>
|
<location filename="../src/pages/appintopage.cpp" line="431"/>
|
||||||
<source>Install</source>
|
<source>Install</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="323"/>
|
<location filename="../src/pages/appintopage.cpp" line="322"/>
|
||||||
<source>Installing</source>
|
<source>Installing</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="411"/>
|
<location filename="../src/pages/appintopage.cpp" line="410"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="415"/>
|
<location filename="../src/pages/appintopage.cpp" line="414"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="419"/>
|
<location filename="../src/pages/appintopage.cpp" line="418"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="423"/>
|
<location filename="../src/pages/appintopage.cpp" line="422"/>
|
||||||
<source>Warning</source>
|
<source>Warning</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="411"/>
|
<location filename="../src/pages/appintopage.cpp" line="410"/>
|
||||||
<source>The current application does not support deepin, there may be problems</source>
|
<source>The current application does not support deepin, there may be problems</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="415"/>
|
<location filename="../src/pages/appintopage.cpp" line="414"/>
|
||||||
<source>The current application does not support UOS, there may be problems</source>
|
<source>The current application does not support UOS, there may be problems</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="419"/>
|
<location filename="../src/pages/appintopage.cpp" line="418"/>
|
||||||
<source>The current application does not support Ubuntu, there may be problems</source>
|
<source>The current application does not support Ubuntu, there may be problems</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="423"/>
|
<location filename="../src/pages/appintopage.cpp" line="422"/>
|
||||||
<source>The current application does not support current platform, there may be problems</source>
|
<source>The current application does not support current platform, there may be problems</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="487"/>
|
<location filename="../src/pages/appintopage.cpp" line="486"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="500"/>
|
<location filename="../src/pages/appintopage.cpp" line="499"/>
|
||||||
<source>Spark Store</source>
|
<source>Spark Store</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="487"/>
|
<location filename="../src/pages/appintopage.cpp" line="486"/>
|
||||||
<source>Uninstall succeeded</source>
|
<source>Uninstall succeeded</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="500"/>
|
<location filename="../src/pages/appintopage.cpp" line="499"/>
|
||||||
<source>The URL has been copied to the clipboard</source>
|
<source>The URL has been copied to the clipboard</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
@ -268,12 +268,12 @@
|
|||||||
<context>
|
<context>
|
||||||
<name>DAboutDialog</name>
|
<name>DAboutDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="141"/>
|
<location filename="../src/application.cpp" line="142"/>
|
||||||
<source>Version: %1</source>
|
<source>Version: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="151"/>
|
<location filename="../src/application.cpp" line="152"/>
|
||||||
<source>%1 is released under %2</source>
|
<source>%1 is released under %2</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
@ -480,28 +480,28 @@
|
|||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="188"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="190"/>
|
||||||
<source>Submit App</source>
|
<source>Submit App</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="189"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="191"/>
|
||||||
<source>Submit App with client(Recommanded)</source>
|
<source>Submit App with client(Recommanded)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="190"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="192"/>
|
||||||
<source>Settings</source>
|
<source>Settings</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="191"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="193"/>
|
||||||
<source>APP Upgrade and Install Settings</source>
|
<source>APP Upgrade and Install Settings</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="147"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="147"/>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="242"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="244"/>
|
||||||
<source>Spark Store</source>
|
<source>Spark Store</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
@ -514,19 +514,19 @@
|
|||||||
<context>
|
<context>
|
||||||
<name>QObject</name>
|
<name>QObject</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="35"/>
|
|
||||||
<location filename="../src/application.cpp" line="36"/>
|
<location filename="../src/application.cpp" line="36"/>
|
||||||
|
<location filename="../src/application.cpp" line="37"/>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="126"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="126"/>
|
||||||
<source>Spark Store</source>
|
<source>Spark Store</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="40"/>
|
<location filename="../src/application.cpp" line="41"/>
|
||||||
<source><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></source>
|
<source><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></source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="148"/>
|
<location filename="../src/application.cpp" line="149"/>
|
||||||
<source>Spark Project</source>
|
<source>Spark Project</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
@ -536,7 +536,7 @@
|
|||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="245"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="247"/>
|
||||||
<source>Show MainWindow</source>
|
<source>Show MainWindow</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
@ -658,12 +658,12 @@
|
|||||||
<context>
|
<context>
|
||||||
<name>TitleBarMenu</name>
|
<name>TitleBarMenu</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="246"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="248"/>
|
||||||
<source>About</source>
|
<source>About</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="247"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="249"/>
|
||||||
<source>Exit</source>
|
<source>Exit</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -126,9 +126,9 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.ui" line="244"/>
|
<location filename="../src/pages/appintopage.ui" line="244"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="175"/>
|
<location filename="../src/pages/appintopage.cpp" line="174"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="313"/>
|
<location filename="../src/pages/appintopage.cpp" line="312"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="483"/>
|
<location filename="../src/pages/appintopage.cpp" line="482"/>
|
||||||
<source>Download and Install</source>
|
<source>Download and Install</source>
|
||||||
<translation>Descargar e instalar</translation>
|
<translation>Descargar e instalar</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -180,74 +180,74 @@
|
|||||||
<translation>Haga clic en "abrir"</translation>
|
<translation>Haga clic en "abrir"</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="114"/>
|
<location filename="../src/pages/appintopage.cpp" line="113"/>
|
||||||
<source>Developer Mode Disabled</source>
|
<source>Developer Mode Disabled</source>
|
||||||
<translation>Se ha desactivado el modo desarrollador</translation>
|
<translation>Se ha desactivado el modo desarrollador</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="160"/>
|
<location filename="../src/pages/appintopage.cpp" line="159"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="329"/>
|
<location filename="../src/pages/appintopage.cpp" line="328"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="456"/>
|
<location filename="../src/pages/appintopage.cpp" line="455"/>
|
||||||
<source>Reinstall</source>
|
<source>Reinstall</source>
|
||||||
<translation>Reinstalación</translation>
|
<translation>Reinstalación</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="167"/>
|
<location filename="../src/pages/appintopage.cpp" line="166"/>
|
||||||
<source>Upgrade</source>
|
<source>Upgrade</source>
|
||||||
<translation>Actualización</translation>
|
<translation>Actualización</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="318"/>
|
<location filename="../src/pages/appintopage.cpp" line="317"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="432"/>
|
<location filename="../src/pages/appintopage.cpp" line="431"/>
|
||||||
<source>Install</source>
|
<source>Install</source>
|
||||||
<translation>Instalación</translation>
|
<translation>Instalación</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="323"/>
|
<location filename="../src/pages/appintopage.cpp" line="322"/>
|
||||||
<source>Installing</source>
|
<source>Installing</source>
|
||||||
<translation>Se está instalando</translation>
|
<translation>Se está instalando</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="411"/>
|
<location filename="../src/pages/appintopage.cpp" line="410"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="415"/>
|
<location filename="../src/pages/appintopage.cpp" line="414"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="419"/>
|
<location filename="../src/pages/appintopage.cpp" line="418"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="423"/>
|
<location filename="../src/pages/appintopage.cpp" line="422"/>
|
||||||
<source>Warning</source>
|
<source>Warning</source>
|
||||||
<translation>Aviso</translation>
|
<translation>Aviso</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="411"/>
|
<location filename="../src/pages/appintopage.cpp" line="410"/>
|
||||||
<source>The current application does not support deepin, there may be problems</source>
|
<source>The current application does not support deepin, there may be problems</source>
|
||||||
<translation>La aplicación actual no admite deepin, puede haber problemas</translation>
|
<translation>La aplicación actual no admite deepin, puede haber problemas</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="415"/>
|
<location filename="../src/pages/appintopage.cpp" line="414"/>
|
||||||
<source>The current application does not support UOS, there may be problems</source>
|
<source>The current application does not support UOS, there may be problems</source>
|
||||||
<translation>La aplicación actual no admite uos, puede haber problemas</translation>
|
<translation>La aplicación actual no admite uos, puede haber problemas</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="419"/>
|
<location filename="../src/pages/appintopage.cpp" line="418"/>
|
||||||
<source>The current application does not support Ubuntu, there may be problems</source>
|
<source>The current application does not support Ubuntu, there may be problems</source>
|
||||||
<translation>La aplicación actual no admite ubuntu, puede haber problemas</translation>
|
<translation>La aplicación actual no admite ubuntu, puede haber problemas</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="423"/>
|
<location filename="../src/pages/appintopage.cpp" line="422"/>
|
||||||
<source>The current application does not support current platform, there may be problems</source>
|
<source>The current application does not support current platform, there may be problems</source>
|
||||||
<translation>La aplicación actual no admite la Plataforma actual, puede haber problemas</translation>
|
<translation>La aplicación actual no admite la Plataforma actual, puede haber problemas</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="487"/>
|
<location filename="../src/pages/appintopage.cpp" line="486"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="500"/>
|
<location filename="../src/pages/appintopage.cpp" line="499"/>
|
||||||
<source>Spark Store</source>
|
<source>Spark Store</source>
|
||||||
<translation>SPARK Store</translation>
|
<translation>SPARK Store</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="487"/>
|
<location filename="../src/pages/appintopage.cpp" line="486"/>
|
||||||
<source>Uninstall succeeded</source>
|
<source>Uninstall succeeded</source>
|
||||||
<translation>Desinstalación exitosa</translation>
|
<translation>Desinstalación exitosa</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="500"/>
|
<location filename="../src/pages/appintopage.cpp" line="499"/>
|
||||||
<source>The URL has been copied to the clipboard</source>
|
<source>The URL has been copied to the clipboard</source>
|
||||||
<translation>La URL ha sido copiada al portapapeles</translation>
|
<translation>La URL ha sido copiada al portapapeles</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -268,12 +268,12 @@
|
|||||||
<context>
|
<context>
|
||||||
<name>DAboutDialog</name>
|
<name>DAboutDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="141"/>
|
<location filename="../src/application.cpp" line="142"/>
|
||||||
<source>Version: %1</source>
|
<source>Version: %1</source>
|
||||||
<translation>Versión %1</translation>
|
<translation>Versión %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="151"/>
|
<location filename="../src/application.cpp" line="152"/>
|
||||||
<source>%1 is released under %2</source>
|
<source>%1 is released under %2</source>
|
||||||
<translation>%1 publicado bajo %2</translation>
|
<translation>%1 publicado bajo %2</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -480,28 +480,28 @@
|
|||||||
<translation>Actualización de app</translation>
|
<translation>Actualización de app</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="188"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="190"/>
|
||||||
<source>Submit App</source>
|
<source>Submit App</source>
|
||||||
<translation>Presentación de la aplicación</translation>
|
<translation>Presentación de la aplicación</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="189"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="191"/>
|
||||||
<source>Submit App with client(Recommanded)</source>
|
<source>Submit App with client(Recommanded)</source>
|
||||||
<translation>Enviar la aplicación al cliente (recomendación)</translation>
|
<translation>Enviar la aplicación al cliente (recomendación)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="190"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="192"/>
|
||||||
<source>Settings</source>
|
<source>Settings</source>
|
||||||
<translation>Configuración</translation>
|
<translation>Configuración</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="191"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="193"/>
|
||||||
<source>APP Upgrade and Install Settings</source>
|
<source>APP Upgrade and Install Settings</source>
|
||||||
<translation>Actualización e instalación de app</translation>
|
<translation>Actualización e instalación de app</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="147"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="147"/>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="242"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="244"/>
|
||||||
<source>Spark Store</source>
|
<source>Spark Store</source>
|
||||||
<translation>SPARK Store</translation>
|
<translation>SPARK Store</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -514,19 +514,19 @@
|
|||||||
<context>
|
<context>
|
||||||
<name>QObject</name>
|
<name>QObject</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="35"/>
|
|
||||||
<location filename="../src/application.cpp" line="36"/>
|
<location filename="../src/application.cpp" line="36"/>
|
||||||
|
<location filename="../src/application.cpp" line="37"/>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="126"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="126"/>
|
||||||
<source>Spark Store</source>
|
<source>Spark Store</source>
|
||||||
<translation>SPARK Store</translation>
|
<translation>SPARK Store</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="40"/>
|
<location filename="../src/application.cpp" line="41"/>
|
||||||
<source><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></source>
|
<source><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></source>
|
||||||
<translation><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></translation>
|
<translation><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></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="148"/>
|
<location filename="../src/application.cpp" line="149"/>
|
||||||
<source>Spark Project</source>
|
<source>Spark Project</source>
|
||||||
<translation>Proyecto spark</translation>
|
<translation>Proyecto spark</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -536,7 +536,7 @@
|
|||||||
<translation>Descargar lista</translation>
|
<translation>Descargar lista</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="245"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="247"/>
|
||||||
<source>Show MainWindow</source>
|
<source>Show MainWindow</source>
|
||||||
<translation>Mostrar la ventana principal</translation>
|
<translation>Mostrar la ventana principal</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -658,12 +658,12 @@
|
|||||||
<context>
|
<context>
|
||||||
<name>TitleBarMenu</name>
|
<name>TitleBarMenu</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="246"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="248"/>
|
||||||
<source>About</source>
|
<source>About</source>
|
||||||
<translation>Sobre</translation>
|
<translation>Sobre</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="247"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="249"/>
|
||||||
<source>Exit</source>
|
<source>Exit</source>
|
||||||
<translation>Exportaciones</translation>
|
<translation>Exportaciones</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -126,9 +126,9 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.ui" line="244"/>
|
<location filename="../src/pages/appintopage.ui" line="244"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="175"/>
|
<location filename="../src/pages/appintopage.cpp" line="174"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="313"/>
|
<location filename="../src/pages/appintopage.cpp" line="312"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="483"/>
|
<location filename="../src/pages/appintopage.cpp" line="482"/>
|
||||||
<source>Download and Install</source>
|
<source>Download and Install</source>
|
||||||
<translation>Télécharger et installer</translation>
|
<translation>Télécharger et installer</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -180,74 +180,74 @@
|
|||||||
<translation>Cliquez sur Ouvrir</translation>
|
<translation>Cliquez sur Ouvrir</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="114"/>
|
<location filename="../src/pages/appintopage.cpp" line="113"/>
|
||||||
<source>Developer Mode Disabled</source>
|
<source>Developer Mode Disabled</source>
|
||||||
<translation>Mode développeur désactivé</translation>
|
<translation>Mode développeur désactivé</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="160"/>
|
<location filename="../src/pages/appintopage.cpp" line="159"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="329"/>
|
<location filename="../src/pages/appintopage.cpp" line="328"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="456"/>
|
<location filename="../src/pages/appintopage.cpp" line="455"/>
|
||||||
<source>Reinstall</source>
|
<source>Reinstall</source>
|
||||||
<translation>Réinstaller</translation>
|
<translation>Réinstaller</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="167"/>
|
<location filename="../src/pages/appintopage.cpp" line="166"/>
|
||||||
<source>Upgrade</source>
|
<source>Upgrade</source>
|
||||||
<translation>Mise à niveau</translation>
|
<translation>Mise à niveau</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="318"/>
|
<location filename="../src/pages/appintopage.cpp" line="317"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="432"/>
|
<location filename="../src/pages/appintopage.cpp" line="431"/>
|
||||||
<source>Install</source>
|
<source>Install</source>
|
||||||
<translation>Installation</translation>
|
<translation>Installation</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="323"/>
|
<location filename="../src/pages/appintopage.cpp" line="322"/>
|
||||||
<source>Installing</source>
|
<source>Installing</source>
|
||||||
<translation>Installation en cours</translation>
|
<translation>Installation en cours</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="411"/>
|
<location filename="../src/pages/appintopage.cpp" line="410"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="415"/>
|
<location filename="../src/pages/appintopage.cpp" line="414"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="419"/>
|
<location filename="../src/pages/appintopage.cpp" line="418"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="423"/>
|
<location filename="../src/pages/appintopage.cpp" line="422"/>
|
||||||
<source>Warning</source>
|
<source>Warning</source>
|
||||||
<translation>Avertissement</translation>
|
<translation>Avertissement</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="411"/>
|
<location filename="../src/pages/appintopage.cpp" line="410"/>
|
||||||
<source>The current application does not support deepin, there may be problems</source>
|
<source>The current application does not support deepin, there may be problems</source>
|
||||||
<translation>L'application actuelle ne supporte pas deepin, il peut y avoir un problème</translation>
|
<translation>L'application actuelle ne supporte pas deepin, il peut y avoir un problème</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="415"/>
|
<location filename="../src/pages/appintopage.cpp" line="414"/>
|
||||||
<source>The current application does not support UOS, there may be problems</source>
|
<source>The current application does not support UOS, there may be problems</source>
|
||||||
<translation>L'application actuelle ne prend pas en charge uos, il peut y avoir un problème</translation>
|
<translation>L'application actuelle ne prend pas en charge uos, il peut y avoir un problème</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="419"/>
|
<location filename="../src/pages/appintopage.cpp" line="418"/>
|
||||||
<source>The current application does not support Ubuntu, there may be problems</source>
|
<source>The current application does not support Ubuntu, there may be problems</source>
|
||||||
<translation>L'application actuelle ne supporte pas Ubuntu, il peut y avoir un problème</translation>
|
<translation>L'application actuelle ne supporte pas Ubuntu, il peut y avoir un problème</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="423"/>
|
<location filename="../src/pages/appintopage.cpp" line="422"/>
|
||||||
<source>The current application does not support current platform, there may be problems</source>
|
<source>The current application does not support current platform, there may be problems</source>
|
||||||
<translation>L'application actuelle ne prend pas en charge la plate - forme actuelle, il peut y avoir un problème</translation>
|
<translation>L'application actuelle ne prend pas en charge la plate - forme actuelle, il peut y avoir un problème</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="487"/>
|
<location filename="../src/pages/appintopage.cpp" line="486"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="500"/>
|
<location filename="../src/pages/appintopage.cpp" line="499"/>
|
||||||
<source>Spark Store</source>
|
<source>Spark Store</source>
|
||||||
<translation>Le Spark store</translation>
|
<translation>Le Spark store</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="487"/>
|
<location filename="../src/pages/appintopage.cpp" line="486"/>
|
||||||
<source>Uninstall succeeded</source>
|
<source>Uninstall succeeded</source>
|
||||||
<translation>Désinstallation réussie</translation>
|
<translation>Désinstallation réussie</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="500"/>
|
<location filename="../src/pages/appintopage.cpp" line="499"/>
|
||||||
<source>The URL has been copied to the clipboard</source>
|
<source>The URL has been copied to the clipboard</source>
|
||||||
<translation>L'URL a été copiée dans le presse - papiers</translation>
|
<translation>L'URL a été copiée dans le presse - papiers</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -268,12 +268,12 @@
|
|||||||
<context>
|
<context>
|
||||||
<name>DAboutDialog</name>
|
<name>DAboutDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="141"/>
|
<location filename="../src/application.cpp" line="142"/>
|
||||||
<source>Version: %1</source>
|
<source>Version: %1</source>
|
||||||
<translation>Version: %1</translation>
|
<translation>Version: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="151"/>
|
<location filename="../src/application.cpp" line="152"/>
|
||||||
<source>%1 is released under %2</source>
|
<source>%1 is released under %2</source>
|
||||||
<translation>%1 publié sous %2</translation>
|
<translation>%1 publié sous %2</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -480,28 +480,28 @@
|
|||||||
<translation>Mise à niveau app</translation>
|
<translation>Mise à niveau app</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="188"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="190"/>
|
||||||
<source>Submit App</source>
|
<source>Submit App</source>
|
||||||
<translation>Soumettre une application</translation>
|
<translation>Soumettre une application</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="189"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="191"/>
|
||||||
<source>Submit App with client(Recommanded)</source>
|
<source>Submit App with client(Recommanded)</source>
|
||||||
<translation>Soumettre une demande au client (recommandé)</translation>
|
<translation>Soumettre une demande au client (recommandé)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="190"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="192"/>
|
||||||
<source>Settings</source>
|
<source>Settings</source>
|
||||||
<translation>Paramètres</translation>
|
<translation>Paramètres</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="191"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="193"/>
|
||||||
<source>APP Upgrade and Install Settings</source>
|
<source>APP Upgrade and Install Settings</source>
|
||||||
<translation>Paramètres de mise à niveau et d'installation de l'app</translation>
|
<translation>Paramètres de mise à niveau et d'installation de l'app</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="147"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="147"/>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="242"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="244"/>
|
||||||
<source>Spark Store</source>
|
<source>Spark Store</source>
|
||||||
<translation>Le Spark store</translation>
|
<translation>Le Spark store</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -514,19 +514,19 @@
|
|||||||
<context>
|
<context>
|
||||||
<name>QObject</name>
|
<name>QObject</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="35"/>
|
|
||||||
<location filename="../src/application.cpp" line="36"/>
|
<location filename="../src/application.cpp" line="36"/>
|
||||||
|
<location filename="../src/application.cpp" line="37"/>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="126"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="126"/>
|
||||||
<source>Spark Store</source>
|
<source>Spark Store</source>
|
||||||
<translation>Le Spark store</translation>
|
<translation>Le Spark store</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="40"/>
|
<location filename="../src/application.cpp" line="41"/>
|
||||||
<source><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></source>
|
<source><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></source>
|
||||||
<translation><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></translation>
|
<translation><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></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="148"/>
|
<location filename="../src/application.cpp" line="149"/>
|
||||||
<source>Spark Project</source>
|
<source>Spark Project</source>
|
||||||
<translation>Le projet Spark</translation>
|
<translation>Le projet Spark</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -536,7 +536,7 @@
|
|||||||
<translation>Télécharger la Liste</translation>
|
<translation>Télécharger la Liste</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="245"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="247"/>
|
||||||
<source>Show MainWindow</source>
|
<source>Show MainWindow</source>
|
||||||
<translation>Afficher la fenêtre principale</translation>
|
<translation>Afficher la fenêtre principale</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -658,12 +658,12 @@
|
|||||||
<context>
|
<context>
|
||||||
<name>TitleBarMenu</name>
|
<name>TitleBarMenu</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="246"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="248"/>
|
||||||
<source>About</source>
|
<source>About</source>
|
||||||
<translation>À propos</translation>
|
<translation>À propos</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="247"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="249"/>
|
||||||
<source>Exit</source>
|
<source>Exit</source>
|
||||||
<translation>Exportations</translation>
|
<translation>Exportations</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -121,9 +121,9 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.ui" line="244"/>
|
<location filename="../src/pages/appintopage.ui" line="244"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="175"/>
|
<location filename="../src/pages/appintopage.cpp" line="174"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="313"/>
|
<location filename="../src/pages/appintopage.cpp" line="312"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="483"/>
|
<location filename="../src/pages/appintopage.cpp" line="482"/>
|
||||||
<source>Download and Install</source>
|
<source>Download and Install</source>
|
||||||
<translation>下载并安装</translation>
|
<translation>下载并安装</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -180,74 +180,74 @@
|
|||||||
<translation>点击跳转</translation>
|
<translation>点击跳转</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="114"/>
|
<location filename="../src/pages/appintopage.cpp" line="113"/>
|
||||||
<source>Developer Mode Disabled</source>
|
<source>Developer Mode Disabled</source>
|
||||||
<translation>开发者模式未开启</translation>
|
<translation>开发者模式未开启</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="160"/>
|
<location filename="../src/pages/appintopage.cpp" line="159"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="329"/>
|
<location filename="../src/pages/appintopage.cpp" line="328"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="456"/>
|
<location filename="../src/pages/appintopage.cpp" line="455"/>
|
||||||
<source>Reinstall</source>
|
<source>Reinstall</source>
|
||||||
<translation>重新安装</translation>
|
<translation>重新安装</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="167"/>
|
<location filename="../src/pages/appintopage.cpp" line="166"/>
|
||||||
<source>Upgrade</source>
|
<source>Upgrade</source>
|
||||||
<translation>升级</translation>
|
<translation>升级</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="318"/>
|
<location filename="../src/pages/appintopage.cpp" line="317"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="432"/>
|
<location filename="../src/pages/appintopage.cpp" line="431"/>
|
||||||
<source>Install</source>
|
<source>Install</source>
|
||||||
<translation>安装</translation>
|
<translation>安装</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="323"/>
|
<location filename="../src/pages/appintopage.cpp" line="322"/>
|
||||||
<source>Installing</source>
|
<source>Installing</source>
|
||||||
<translation>正在安装</translation>
|
<translation>正在安装</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="411"/>
|
<location filename="../src/pages/appintopage.cpp" line="410"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="415"/>
|
<location filename="../src/pages/appintopage.cpp" line="414"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="419"/>
|
<location filename="../src/pages/appintopage.cpp" line="418"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="423"/>
|
<location filename="../src/pages/appintopage.cpp" line="422"/>
|
||||||
<source>Warning</source>
|
<source>Warning</source>
|
||||||
<translation>警告</translation>
|
<translation>警告</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="411"/>
|
<location filename="../src/pages/appintopage.cpp" line="410"/>
|
||||||
<source>The current application does not support deepin, there may be problems</source>
|
<source>The current application does not support deepin, there may be problems</source>
|
||||||
<translation>当前应用不支持deepin,安装后可能会出现问题</translation>
|
<translation>当前应用不支持deepin,安装后可能会出现问题</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="415"/>
|
<location filename="../src/pages/appintopage.cpp" line="414"/>
|
||||||
<source>The current application does not support UOS, there may be problems</source>
|
<source>The current application does not support UOS, there may be problems</source>
|
||||||
<translation>当前应用不支持UOS,安装后可能会出现问题</translation>
|
<translation>当前应用不支持UOS,安装后可能会出现问题</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="419"/>
|
<location filename="../src/pages/appintopage.cpp" line="418"/>
|
||||||
<source>The current application does not support Ubuntu, there may be problems</source>
|
<source>The current application does not support Ubuntu, there may be problems</source>
|
||||||
<translation>当前应用不支持Ubuntu,安装后可能会出现问题</translation>
|
<translation>当前应用不支持Ubuntu,安装后可能会出现问题</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="423"/>
|
<location filename="../src/pages/appintopage.cpp" line="422"/>
|
||||||
<source>The current application does not support current platform, there may be problems</source>
|
<source>The current application does not support current platform, there may be problems</source>
|
||||||
<translation>当前应用不支持平台,安装后可能会出现问题</translation>
|
<translation>当前应用不支持平台,安装后可能会出现问题</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="487"/>
|
<location filename="../src/pages/appintopage.cpp" line="486"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="500"/>
|
<location filename="../src/pages/appintopage.cpp" line="499"/>
|
||||||
<source>Spark Store</source>
|
<source>Spark Store</source>
|
||||||
<translation>星火应用商店</translation>
|
<translation>星火应用商店</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="487"/>
|
<location filename="../src/pages/appintopage.cpp" line="486"/>
|
||||||
<source>Uninstall succeeded</source>
|
<source>Uninstall succeeded</source>
|
||||||
<translation>卸载成功</translation>
|
<translation>卸载成功</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="500"/>
|
<location filename="../src/pages/appintopage.cpp" line="499"/>
|
||||||
<source>The URL has been copied to the clipboard</source>
|
<source>The URL has been copied to the clipboard</source>
|
||||||
<translation>链接已复制到剪贴板</translation>
|
<translation>链接已复制到剪贴板</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -268,12 +268,12 @@
|
|||||||
<context>
|
<context>
|
||||||
<name>DAboutDialog</name>
|
<name>DAboutDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="141"/>
|
<location filename="../src/application.cpp" line="142"/>
|
||||||
<source>Version: %1</source>
|
<source>Version: %1</source>
|
||||||
<translation>版本:%1</translation>
|
<translation>版本:%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="151"/>
|
<location filename="../src/application.cpp" line="152"/>
|
||||||
<source>%1 is released under %2</source>
|
<source>%1 is released under %2</source>
|
||||||
<translation>%1遵循%2协议发布</translation>
|
<translation>%1遵循%2协议发布</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -480,28 +480,28 @@
|
|||||||
<translation>更新</translation>
|
<translation>更新</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="188"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="190"/>
|
||||||
<source>Submit App</source>
|
<source>Submit App</source>
|
||||||
<translation>投递应用</translation>
|
<translation>投递应用</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="189"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="191"/>
|
||||||
<source>Submit App with client(Recommanded)</source>
|
<source>Submit App with client(Recommanded)</source>
|
||||||
<translation>使用本地投稿器投递应用(推荐)</translation>
|
<translation>使用本地投稿器投递应用(推荐)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="190"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="192"/>
|
||||||
<source>Settings</source>
|
<source>Settings</source>
|
||||||
<translation>设置</translation>
|
<translation>设置</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="191"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="193"/>
|
||||||
<source>APP Upgrade and Install Settings</source>
|
<source>APP Upgrade and Install Settings</source>
|
||||||
<translation>应用更新和安装设置</translation>
|
<translation>应用更新和安装设置</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="147"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="147"/>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="242"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="244"/>
|
||||||
<source>Spark Store</source>
|
<source>Spark Store</source>
|
||||||
<translation>星火应用商店</translation>
|
<translation>星火应用商店</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -514,19 +514,19 @@
|
|||||||
<context>
|
<context>
|
||||||
<name>QObject</name>
|
<name>QObject</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="35"/>
|
|
||||||
<location filename="../src/application.cpp" line="36"/>
|
<location filename="../src/application.cpp" line="36"/>
|
||||||
|
<location filename="../src/application.cpp" line="37"/>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="126"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="126"/>
|
||||||
<source>Spark Store</source>
|
<source>Spark Store</source>
|
||||||
<translation>星火应用商店</translation>
|
<translation>星火应用商店</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="40"/>
|
<location filename="../src/application.cpp" line="41"/>
|
||||||
<source><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></source>
|
<source><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></source>
|
||||||
<translation><span style=' font-size:10pt;font-weight:60;'>一款由社区提供的应用商店</span><br/><a href='https://www.spark-app.store/'>https://www.spark-app.store</a><br/><span style=' font-size:12pt;'>星火计划开发者</span></translation>
|
<translation><span style=' font-size:10pt;font-weight:60;'>一款由社区提供的应用商店</span><br/><a href='https://www.spark-app.store/'>https://www.spark-app.store</a><br/><span style=' font-size:12pt;'>星火计划开发者</span></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="148"/>
|
<location filename="../src/application.cpp" line="149"/>
|
||||||
<source>Spark Project</source>
|
<source>Spark Project</source>
|
||||||
<translation>星火计划</translation>
|
<translation>星火计划</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -536,7 +536,7 @@
|
|||||||
<translation>下载列表</translation>
|
<translation>下载列表</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="245"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="247"/>
|
||||||
<source>Show MainWindow</source>
|
<source>Show MainWindow</source>
|
||||||
<translation>显示主窗口</translation>
|
<translation>显示主窗口</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -658,12 +658,12 @@
|
|||||||
<context>
|
<context>
|
||||||
<name>TitleBarMenu</name>
|
<name>TitleBarMenu</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="246"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="248"/>
|
||||||
<source>About</source>
|
<source>About</source>
|
||||||
<translation>关于</translation>
|
<translation>关于</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="247"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="249"/>
|
||||||
<source>Exit</source>
|
<source>Exit</source>
|
||||||
<translation>退出</translation>
|
<translation>退出</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -121,9 +121,9 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.ui" line="244"/>
|
<location filename="../src/pages/appintopage.ui" line="244"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="175"/>
|
<location filename="../src/pages/appintopage.cpp" line="174"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="313"/>
|
<location filename="../src/pages/appintopage.cpp" line="312"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="483"/>
|
<location filename="../src/pages/appintopage.cpp" line="482"/>
|
||||||
<source>Download and Install</source>
|
<source>Download and Install</source>
|
||||||
<translation>下載並安裝</translation>
|
<translation>下載並安裝</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -180,74 +180,74 @@
|
|||||||
<translation>点击跳转</translation>
|
<translation>点击跳转</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="114"/>
|
<location filename="../src/pages/appintopage.cpp" line="113"/>
|
||||||
<source>Developer Mode Disabled</source>
|
<source>Developer Mode Disabled</source>
|
||||||
<translation>开发者模式未开启</translation>
|
<translation>开发者模式未开启</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="160"/>
|
<location filename="../src/pages/appintopage.cpp" line="159"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="329"/>
|
<location filename="../src/pages/appintopage.cpp" line="328"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="456"/>
|
<location filename="../src/pages/appintopage.cpp" line="455"/>
|
||||||
<source>Reinstall</source>
|
<source>Reinstall</source>
|
||||||
<translation>重新安裝</translation>
|
<translation>重新安裝</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="167"/>
|
<location filename="../src/pages/appintopage.cpp" line="166"/>
|
||||||
<source>Upgrade</source>
|
<source>Upgrade</source>
|
||||||
<translation>升级</translation>
|
<translation>升级</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="318"/>
|
<location filename="../src/pages/appintopage.cpp" line="317"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="432"/>
|
<location filename="../src/pages/appintopage.cpp" line="431"/>
|
||||||
<source>Install</source>
|
<source>Install</source>
|
||||||
<translation>安装</translation>
|
<translation>安装</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="323"/>
|
<location filename="../src/pages/appintopage.cpp" line="322"/>
|
||||||
<source>Installing</source>
|
<source>Installing</source>
|
||||||
<translation>正在安装</translation>
|
<translation>正在安装</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="411"/>
|
<location filename="../src/pages/appintopage.cpp" line="410"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="415"/>
|
<location filename="../src/pages/appintopage.cpp" line="414"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="419"/>
|
<location filename="../src/pages/appintopage.cpp" line="418"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="423"/>
|
<location filename="../src/pages/appintopage.cpp" line="422"/>
|
||||||
<source>Warning</source>
|
<source>Warning</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="411"/>
|
<location filename="../src/pages/appintopage.cpp" line="410"/>
|
||||||
<source>The current application does not support deepin, there may be problems</source>
|
<source>The current application does not support deepin, there may be problems</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="415"/>
|
<location filename="../src/pages/appintopage.cpp" line="414"/>
|
||||||
<source>The current application does not support UOS, there may be problems</source>
|
<source>The current application does not support UOS, there may be problems</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="419"/>
|
<location filename="../src/pages/appintopage.cpp" line="418"/>
|
||||||
<source>The current application does not support Ubuntu, there may be problems</source>
|
<source>The current application does not support Ubuntu, there may be problems</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="423"/>
|
<location filename="../src/pages/appintopage.cpp" line="422"/>
|
||||||
<source>The current application does not support current platform, there may be problems</source>
|
<source>The current application does not support current platform, there may be problems</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="487"/>
|
<location filename="../src/pages/appintopage.cpp" line="486"/>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="500"/>
|
<location filename="../src/pages/appintopage.cpp" line="499"/>
|
||||||
<source>Spark Store</source>
|
<source>Spark Store</source>
|
||||||
<translation>星火应用商店</translation>
|
<translation>星火应用商店</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="487"/>
|
<location filename="../src/pages/appintopage.cpp" line="486"/>
|
||||||
<source>Uninstall succeeded</source>
|
<source>Uninstall succeeded</source>
|
||||||
<translation>卸载成功</translation>
|
<translation>卸载成功</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/pages/appintopage.cpp" line="500"/>
|
<location filename="../src/pages/appintopage.cpp" line="499"/>
|
||||||
<source>The URL has been copied to the clipboard</source>
|
<source>The URL has been copied to the clipboard</source>
|
||||||
<translation>链接已复制到剪贴板</translation>
|
<translation>链接已复制到剪贴板</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -268,12 +268,12 @@
|
|||||||
<context>
|
<context>
|
||||||
<name>DAboutDialog</name>
|
<name>DAboutDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="141"/>
|
<location filename="../src/application.cpp" line="142"/>
|
||||||
<source>Version: %1</source>
|
<source>Version: %1</source>
|
||||||
<translation>版本:%1</translation>
|
<translation>版本:%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="151"/>
|
<location filename="../src/application.cpp" line="152"/>
|
||||||
<source>%1 is released under %2</source>
|
<source>%1 is released under %2</source>
|
||||||
<translation>%1遵循%2协议发布</translation>
|
<translation>%1遵循%2协议发布</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -480,28 +480,28 @@
|
|||||||
<translation>軟體更新</translation>
|
<translation>軟體更新</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="188"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="190"/>
|
||||||
<source>Submit App</source>
|
<source>Submit App</source>
|
||||||
<translation>上傳軟體</translation>
|
<translation>上傳軟體</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="189"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="191"/>
|
||||||
<source>Submit App with client(Recommanded)</source>
|
<source>Submit App with client(Recommanded)</source>
|
||||||
<translation>從客戶端上傳軟體(推薦的)</translation>
|
<translation>從客戶端上傳軟體(推薦的)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="190"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="192"/>
|
||||||
<source>Settings</source>
|
<source>Settings</source>
|
||||||
<translation>設定</translation>
|
<translation>設定</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="191"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="193"/>
|
||||||
<source>APP Upgrade and Install Settings</source>
|
<source>APP Upgrade and Install Settings</source>
|
||||||
<translation>軟體升級 和 安裝設定</translation>
|
<translation>軟體升級 和 安裝設定</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="147"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="147"/>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="242"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="244"/>
|
||||||
<source>Spark Store</source>
|
<source>Spark Store</source>
|
||||||
<translation>星火应用商店</translation>
|
<translation>星火应用商店</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -514,19 +514,19 @@
|
|||||||
<context>
|
<context>
|
||||||
<name>QObject</name>
|
<name>QObject</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="35"/>
|
|
||||||
<location filename="../src/application.cpp" line="36"/>
|
<location filename="../src/application.cpp" line="36"/>
|
||||||
|
<location filename="../src/application.cpp" line="37"/>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="126"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="126"/>
|
||||||
<source>Spark Store</source>
|
<source>Spark Store</source>
|
||||||
<translation>星火应用商店</translation>
|
<translation>星火应用商店</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="40"/>
|
<location filename="../src/application.cpp" line="41"/>
|
||||||
<source><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></source>
|
<source><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></source>
|
||||||
<translation><span style=' font-size:10pt;font-weight:60;'>一款由社区提供的应用商店</span><br/><a href='https://www.spark-app.store/'>https://www.spark-app.store</a><br/><span style=' font-size:12pt;'>星火计划开发者</span></translation>
|
<translation><span style=' font-size:10pt;font-weight:60;'>一款由社区提供的应用商店</span><br/><a href='https://www.spark-app.store/'>https://www.spark-app.store</a><br/><span style=' font-size:12pt;'>星火计划开发者</span></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/application.cpp" line="148"/>
|
<location filename="../src/application.cpp" line="149"/>
|
||||||
<source>Spark Project</source>
|
<source>Spark Project</source>
|
||||||
<translation>星火计划</translation>
|
<translation>星火计划</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -536,7 +536,7 @@
|
|||||||
<translation>下载列表</translation>
|
<translation>下载列表</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="245"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="247"/>
|
||||||
<source>Show MainWindow</source>
|
<source>Show MainWindow</source>
|
||||||
<translation>显示主窗口</translation>
|
<translation>显示主窗口</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -658,12 +658,12 @@
|
|||||||
<context>
|
<context>
|
||||||
<name>TitleBarMenu</name>
|
<name>TitleBarMenu</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="246"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="248"/>
|
||||||
<source>About</source>
|
<source>About</source>
|
||||||
<translation>关于</translation>
|
<translation>关于</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/mainwindow-dtk.cpp" line="247"/>
|
<location filename="../src/mainwindow-dtk.cpp" line="249"/>
|
||||||
<source>Exit</source>
|
<source>Exit</source>
|
||||||
<translation>退出</translation>
|
<translation>退出</translation>
|
||||||
</message>
|
</message>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user