diff --git a/src/base/utils.cpp b/src/base/utils.cpp index d34de607..43a4fbf0 100755 --- a/src/base/utils.cpp +++ b/src/base/utils.cpp @@ -416,6 +416,16 @@ bool Utils::hasSelperSupport() return false; } +bool Utils::hasAppStore() +{ + const QStringList list = getSystemManualList(); + if (list.contains("deepin-app-store")) { + return true; + } else { + return false; + } +} + //p表示桌面专业版,h表示个人版,d表示社区版 //s表示默认服务器版,e表示服务器企业版,eu表示服务器欧拉版,i表示服务器行业版,klu表示KelvinU项目版本,pgv表示PanguV项目版本。 QStringList Utils::systemToOmit(Dtk::Core::DSysInfo::UosEdition type) diff --git a/src/base/utils.h b/src/base/utils.h index adfd0a36..02533610 100755 --- a/src/base/utils.h +++ b/src/base/utils.h @@ -41,6 +41,7 @@ class Utils : public QObject static QStringList getSystemManualDir(); static QList sortAppList(QMultiMap map); static bool hasSelperSupport(); + static bool hasAppStore(); static QStringList systemToOmit(Dtk::Core::DSysInfo::UosEdition); static bool activeWindow(quintptr winId); static QString regexp_label(const QString &strtext, const QString &strpatter); diff --git a/src/view/i18n_proxy.cpp b/src/view/i18n_proxy.cpp index 43412189..0ebb6632 100644 --- a/src/view/i18n_proxy.cpp +++ b/src/view/i18n_proxy.cpp @@ -28,7 +28,8 @@ QVariantHash I18nProxy::getSentences() const {"ResultNumSuffixs", QObject::tr(" results")}, {"ClicktoView", QObject::tr("Click to view ")}, {"ViewAll", QObject::tr("View all")}, - {"Support", QObject::tr("Support")} + {"Support", QObject::tr("Support")}, + {"AppStore", QObject::tr("App Store")} }; return result; diff --git a/src/view/manual_proxy.cpp b/src/view/manual_proxy.cpp index f2be7760..201b727c 100644 --- a/src/view/manual_proxy.cpp +++ b/src/view/manual_proxy.cpp @@ -113,6 +113,12 @@ bool ManualProxy::hasSelperSupport() return b; } +bool ManualProxy::hasAppStore() +{ + bool b = Utils::hasAppStore(); + return b; +} + /** * @brief ManualProxy::finishChannel * 完成channel对象与Qt对象绑定后调用WebWindow中的onChannelFinish方法 @@ -131,6 +137,11 @@ void ManualProxy::supportClick() emit supportBeClick(); } +void ManualProxy::appStoreClick() +{ + emit appStoreBeClick(); +} + bool ManualProxy::bIsLongSon() { return Utils::judgeLoongson(); diff --git a/src/view/manual_proxy.h b/src/view/manual_proxy.h index db54f41d..a081851b 100644 --- a/src/view/manual_proxy.h +++ b/src/view/manual_proxy.h @@ -19,6 +19,7 @@ class ManualProxy : public QObject void channelInit(); void searchEditTextisEmpty(); void supportBeClick(); + void appStoreBeClick(); //发送页面加载完成时间 void startFinish(qint64); void updateLabel(); @@ -32,8 +33,10 @@ public slots: void setApplicationState(const QString &appName); QStringList getUsedAppList(); bool hasSelperSupport(); + bool hasAppStore(); void finishChannel(); void supportClick(); + void appStoreClick(); bool bIsLongSon(); void showUpdateLabel(); QString appToPath(const QString &appName); diff --git a/src/view/web_window.cpp b/src/view/web_window.cpp index be26680f..472c2278 100644 --- a/src/view/web_window.cpp +++ b/src/view/web_window.cpp @@ -286,6 +286,16 @@ void WebWindow::HelpSupportTriggered(bool bActiontrigger) } } +void WebWindow::appStoreTriggered() +{ + if (!Utils::hasAppStore()) + return; + + QProcess process; + process.startDetached("deepin-home-appstore-client"); + process.waitForFinished(); +} + void WebWindow::slotUpdateLabel() { sendMessage(QIcon(":/common/images/ok.svg"), QObject::tr("The content was updated")); @@ -463,7 +473,7 @@ bool WebWindow::eventFilter(QObject *watched, QEvent *event) if (event->type() == QEvent::FontChange && watched == this) { if (this->settings_proxy_) { qDebug() << "eventFilter QEvent::FontChange"; - auto fontInfo = this->fontInfo(); + QFontInfo fontInfo = this->fontInfo(); emit this->settings_proxy_->fontChangeRequested(fontInfo.family(), fontInfo.pixelSize()); } @@ -709,6 +719,7 @@ void WebWindow::initWebView() connect(manual_proxy_, &ManualProxy::WidgetLower, this, &WebWindow::lower); connect(manual_proxy_, &ManualProxy::updateLabel, this, &WebWindow::slotUpdateLabel); connect(manual_proxy_, &ManualProxy::supportBeClick, this, [this] { this->HelpSupportTriggered(); }); + connect(manual_proxy_, &ManualProxy::appStoreBeClick, this, [this] { this->appStoreTriggered(); }); //web主页html路径 const QFileInfo info(kIndexPage); diff --git a/src/view/web_window.h b/src/view/web_window.h index a6c2a3bc..954fbfa0 100644 --- a/src/view/web_window.h +++ b/src/view/web_window.h @@ -82,6 +82,7 @@ public slots: void settingContextMenu(); QRect hasWidgetRect(QWidget *); void HelpSupportTriggered(bool bActiontrigger = false); + void appStoreTriggered(); QString app_name_; QString keyword_; diff --git a/src/web/toManual/js/App.js b/src/web/toManual/js/App.js index 898294c8..67bc86da 100755 --- a/src/web/toManual/js/App.js +++ b/src/web/toManual/js/App.js @@ -23,6 +23,7 @@ global.lastUrlBeforeSearch = '/'; global.lastHistoryIndex = 0; global.lastAction = 'PUSH'; global.isShowHelperSupport = false; +global.isShowAppStore = false; global.scrollBehavior = 'smooth'; global.bIsReload = false; // global.gHistoryGo = 0; @@ -67,7 +68,36 @@ const Support = ({ text }) => { onMouseLeave={() => setIsHovered(false)} style={{ userSelect: 'none' }} > - + + {isHovered &&
{tooltipText}
} + :
+ ); +}; + +const AppStore = ({ text }) => { + const [isHovered, setIsHovered] = useState(false); + const [tooltipText, setTooltipText] = useState(text); + + useEffect(() => { + if (isHovered) { + setTooltipText(global.i18n['AppStore']); + } + }, [isHovered]); + + useEffect(() => { + if (!isHovered) { + setTooltipText(''); + } + }, [isHovered]); + + return ( + global.isShowAppStore ?
global.qtObjects.manual.appStoreClick()} + onMouseEnter={() => setIsHovered(true)} + onMouseLeave={() => setIsHovered(false)} + style={{ userSelect: 'none' }} + > + {isHovered &&
{tooltipText}
}
:
); @@ -103,6 +133,9 @@ class App extends React.Component { global.qtObjects.manual.hasSelperSupport(bFlag => { global.isShowHelperSupport = bFlag; }); + global.qtObjects.manual.hasAppStore(bFlag => { + global.isShowAppStore = bFlag; + }); global.qtObjects.manual.bIsLongSon(isLongSon => { if (isLongSon) { @@ -341,6 +374,11 @@ class App extends React.Component { var pathList = pathName.split("/"); var cKeyword = ''; + if (pathName.includes("common-application-libraries")) + document.documentElement.style.setProperty(`--app-store-visibility`, 'visible'); + else + document.documentElement.style.setProperty(`--app-store-visibility`, 'hidden'); + //search页===>/search/:keyword //open页=====>/open/:file/:hash?/:key? if (pathList.length == 3) { @@ -540,6 +578,8 @@ class App extends React.Component { if (toB.length == 1) toB = '0' + toB; toRGB = "#" + toR + toG + toB; document.documentElement.style.setProperty(`--nav-hash-press-color`, toRGB); + // toRGB = "rgba(" + pR + ", " + pG + ", " + pB + ", " + "0.4)"; + // document.documentElement.style.setProperty(`--active-shadow-color`, toRGB); } global.setWordFontfamily = (strFontFamily) => { @@ -724,6 +764,8 @@ class App extends React.Component { this.context.router.history.goBack(); }; this.componentDidUpdate(); + + document.documentElement.style.setProperty(`--app-store-visibility`, 'hidden'); } componentDidUpdate() { if (global.qtObjects) { @@ -749,6 +791,8 @@ class App extends React.Component { )} + + ); diff --git a/src/web/toManual/js/main.jsx b/src/web/toManual/js/main.jsx index 00f52fc1..ba3548f5 100755 --- a/src/web/toManual/js/main.jsx +++ b/src/web/toManual/js/main.jsx @@ -30,7 +30,6 @@ export default class Main extends Component { } console.log("main init==>file:", file, " hash:", hash, " key:", key); - global.hash = hash; var filePath = file; diff --git a/src/web/toManual/sass/app.scss b/src/web/toManual/sass/app.scss index 94df8179..8c697436 100644 --- a/src/web/toManual/sass/app.scss +++ b/src/web/toManual/sass/app.scss @@ -131,4 +131,55 @@ div { visibility: visible; } } + + .store-div { + width: 48px; + height: 48px; + border-radius: 48px; + background-color: var(--nav-hash-word-color); + display: inline-block; + position: fixed; + left: var(--support-position); + bottom: 83px; + z-index: 10; + visibility: var(--app-store-visibility); + // box-shadow: 0px 4px 6px var(--active-shadow-color); + + &:hover { + cursor: pointer; + background-color: var(--nav-hash-hover-color); + } + &:active { + // background-color: blue; + background-color: var(--nav-hash-press-color); + } + + .store { + position: absolute; + width: 20px; + height: 21px; + top: 14px; + left: 14px; + } + + .tooltip-wrapper { + position: absolute; + visibility: hidden; + white-space: nowrap; + right: -15px; + bottom: -23px; + background-color: var(--tips-background-color); + color: var(--nav-hove-word-color); + max-width: 500px; + padding: 2px 5px; + border-radius: 8px; + border: 1px solid var(--tips-border-color); + font-family: var(--nav-world-font-family); + box-shadow: 0px 3px 20px var(--tips-shadow-color); + } + + .tooltip-wrapper.show { + visibility: visible; + } + } } \ No newline at end of file diff --git a/src/web_dist/toManual/index.css b/src/web_dist/toManual/index.css index 759e1c7d..ca4451e7 100644 --- a/src/web_dist/toManual/index.css +++ b/src/web_dist/toManual/index.css @@ -68,6 +68,44 @@ div { box-shadow: 0px 3px 20px var(--tips-shadow-color); } div .support-div .tooltip-wrapper.show { visibility: visible; } + div .store-div { + width: 48px; + height: 48px; + border-radius: 48px; + background-color: var(--nav-hash-word-color); + display: inline-block; + position: fixed; + left: var(--support-position); + bottom: 83px; + z-index: 10; + visibility: var(--app-store-visibility); } + div .store-div:hover { + cursor: pointer; + background-color: var(--nav-hash-hover-color); } + div .store-div:active { + background-color: var(--nav-hash-press-color); } + div .store-div .store { + position: absolute; + width: 20px; + height: 21px; + top: 14px; + left: 14px; } + div .store-div .tooltip-wrapper { + position: absolute; + visibility: hidden; + white-space: nowrap; + right: -15px; + bottom: -23px; + background-color: var(--tips-background-color); + color: var(--nav-hove-word-color); + max-width: 500px; + padding: 2px 5px; + border-radius: 8px; + border: 1px solid var(--tips-border-color); + font-family: var(--nav-world-font-family); + box-shadow: 0px 3px 20px var(--tips-shadow-color); } + div .store-div .tooltip-wrapper.show { + visibility: visible; } @charset "UTF-8"; .Triangle, #article .t_center_down::after, #article .t_center_up::after, #article .t_right_down::after, #article .t_right_up::after, #article .t_left_down::after, #article .t_left_up::after { diff --git a/src/web_dist/toManual/index.js b/src/web_dist/toManual/index.js index 4da59f8b..9bee5fef 100644 --- a/src/web_dist/toManual/index.js +++ b/src/web_dist/toManual/index.js @@ -56,6 +56,7 @@ global.lastUrlBeforeSearch = '/'; global.lastHistoryIndex = 0; global.lastAction = 'PUSH'; global.isShowHelperSupport = false; +global.isShowAppStore = false; global.scrollBehavior = 'smooth'; global.bIsReload = false; // global.gHistoryGo = 0; @@ -116,7 +117,55 @@ var Support = function Support(_ref) { }, style: { userSelect: 'none' } }, - _react2.default.createElement('img', { className: 'support', src: './pic.svg' }), + _react2.default.createElement('img', { className: 'support', src: './support.svg' }), + isHovered && _react2.default.createElement( + 'div', + { className: 'tooltip-wrapper ' + (isHovered ? 'show' : '') }, + tooltipText + ) + ) : _react2.default.createElement('div', null); +}; + +var AppStore = function AppStore(_ref2) { + var text = _ref2.text; + + var _useState5 = (0, _react.useState)(false), + _useState6 = _slicedToArray(_useState5, 2), + isHovered = _useState6[0], + setIsHovered = _useState6[1]; + + var _useState7 = (0, _react.useState)(text), + _useState8 = _slicedToArray(_useState7, 2), + tooltipText = _useState8[0], + setTooltipText = _useState8[1]; + + (0, _react.useEffect)(function () { + if (isHovered) { + setTooltipText(global.i18n['AppStore']); + } + }, [isHovered]); + + (0, _react.useEffect)(function () { + if (!isHovered) { + setTooltipText(''); + } + }, [isHovered]); + + return global.isShowAppStore ? _react2.default.createElement( + 'div', + { className: 'store-div', + onClick: function onClick() { + return global.qtObjects.manual.appStoreClick(); + }, + onMouseEnter: function onMouseEnter() { + return setIsHovered(true); + }, + onMouseLeave: function onMouseLeave() { + return setIsHovered(false); + }, + style: { userSelect: 'none' } + }, + _react2.default.createElement('img', { className: 'store', src: './shop.svg' }), isHovered && _react2.default.createElement( 'div', { className: 'tooltip-wrapper ' + (isHovered ? 'show' : '') }, @@ -165,6 +214,9 @@ var App = function (_React$Component) { global.qtObjects.manual.hasSelperSupport(function (bFlag) { global.isShowHelperSupport = bFlag; }); + global.qtObjects.manual.hasAppStore(function (bFlag) { + global.isShowAppStore = bFlag; + }); global.qtObjects.manual.bIsLongSon(function (isLongSon) { if (isLongSon) { @@ -412,6 +464,8 @@ var App = function (_React$Component) { var pathList = pathName.split("/"); var cKeyword = ''; + if (pathName.includes("common-application-libraries")) document.documentElement.style.setProperty('--app-store-visibility', 'visible');else document.documentElement.style.setProperty('--app-store-visibility', 'hidden'); + //search页===>/search/:keyword //open页=====>/open/:file/:hash?/:key? if (pathList.length == 3) { @@ -621,6 +675,8 @@ var App = function (_React$Component) { if (toB.length == 1) toB = '0' + toB; toRGB = "#" + toR + toG + toB; document.documentElement.style.setProperty('--nav-hash-press-color', toRGB); + // toRGB = "rgba(" + pR + ", " + pG + ", " + pB + ", " + "0.4)"; + // document.documentElement.style.setProperty(`--active-shadow-color`, toRGB); }; global.setWordFontfamily = function (strFontFamily) { @@ -799,6 +855,8 @@ var App = function (_React$Component) { _this5.context.router.history.goBack(); }; this.componentDidUpdate(); + + document.documentElement.style.setProperty('--app-store-visibility', 'hidden'); } }, { key: 'componentDidUpdate', @@ -827,6 +885,7 @@ var App = function (_React$Component) { _react2.default.createElement(_reactRouterDom.Route, { path: '/open/:file/:hash?/:key?', component: _main2.default }), _react2.default.createElement(_reactRouterDom.Route, { path: '/search/:keyword', component: _search2.default }) ), + _react2.default.createElement(AppStore, { text: ' ' }), _react2.default.createElement(Support, { text: ' ' }) ); } diff --git a/src/web_dist/toManual/shop.svg b/src/web_dist/toManual/shop.svg new file mode 100644 index 00000000..09d5adde --- /dev/null +++ b/src/web_dist/toManual/shop.svg @@ -0,0 +1,13 @@ + + + shop + + + + + + + + + + \ No newline at end of file diff --git a/src/web_dist/toManual/pic.svg b/src/web_dist/toManual/support.svg similarity index 100% rename from src/web_dist/toManual/pic.svg rename to src/web_dist/toManual/support.svg diff --git a/translations/deepin-manual.ts b/translations/deepin-manual.ts index b954665a..fdd0ab4c 100644 --- a/translations/deepin-manual.ts +++ b/translations/deepin-manual.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment @@ -28,23 +28,23 @@ - + The content was updated - + Search - + Support - + Copy @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F - + Ctrl+F diff --git a/translations/deepin-manual_am_ET.ts b/translations/deepin-manual_am_ET.ts index 2203f174..8f3f9b47 100755 --- a/translations/deepin-manual_am_ET.ts +++ b/translations/deepin-manual_am_ET.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment @@ -28,23 +28,23 @@ - + The content was updated - + Search መፈለጊያ - + Support - + Copy ኮፒ @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F - + Ctrl+F diff --git a/translations/deepin-manual_ar.ts b/translations/deepin-manual_ar.ts index da9ef04c..e75a35ac 100755 --- a/translations/deepin-manual_ar.ts +++ b/translations/deepin-manual_ar.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment @@ -28,23 +28,23 @@ البحث عن "%1" في كامل النص - + The content was updated - + Search بحث - + Support - + Copy نسخ @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_ast.ts b/translations/deepin-manual_ast.ts index 00629d8d..cbe21477 100755 --- a/translations/deepin-manual_ast.ts +++ b/translations/deepin-manual_ast.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment Entornu d'escritoriu @@ -28,23 +28,23 @@ - + The content was updated Anovóse'l conteníu - + Search Buscar - + Support Sofitu - + Copy Copiar @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_az.ts b/translations/deepin-manual_az.ts index 4a2d2745..2b450500 100644 --- a/translations/deepin-manual_az.ts +++ b/translations/deepin-manual_az.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment İş masası mühiti @@ -28,23 +28,23 @@ Tam mətndə "%1" axtarmaq - + The content was updated Məzmun yeniləndi - + Search Axtarış - + Support Dəstək - + Copy Kopyalamaq @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_bg.ts b/translations/deepin-manual_bg.ts index f3668660..226c84e3 100755 --- a/translations/deepin-manual_bg.ts +++ b/translations/deepin-manual_bg.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment @@ -28,23 +28,23 @@ - + The content was updated - + Search Търсене - + Support - + Copy Копиране @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F - + Ctrl+F diff --git a/translations/deepin-manual_bn.ts b/translations/deepin-manual_bn.ts index caf1c7d9..10fc1b47 100755 --- a/translations/deepin-manual_bn.ts +++ b/translations/deepin-manual_bn.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment @@ -28,23 +28,23 @@ - + The content was updated - + Search অনুসন্ধান করুন - + Support - + Copy কপি @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F - + Ctrl+F diff --git a/translations/deepin-manual_bo.ts b/translations/deepin-manual_bo.ts index 2c0547b9..4da38e5b 100644 --- a/translations/deepin-manual_bo.ts +++ b/translations/deepin-manual_bo.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations གཞི་རྩའི་བཀོལ་སྤྱོད་ལ་རྒྱུས་ལོན། - + Common Application Libraries རྒྱུན་སྤྱོད་ཉེར་སྤྱོད་མཛོད། - + Desktop Environment ཅོག་ངོས་ཁོར་ཡུག @@ -28,23 +28,23 @@ ཡིག་ཆ་ཚང་མའི་ནང་དུ་“%1”འཚོལ་བ། - + The content was updated མིག་སྔའི་ནང་དོན་གསར་བརྗེ་བྱས་ཟིན། - + Search འཚོལ་ཞིབ། - + Support ཞབས་ཞུ་དང་རོགས་སྐྱོར། - + Copy པར་སློག @@ -98,6 +98,11 @@ View all ཆ་ཚང་ལ་ལྟ་བ། + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_br.ts b/translations/deepin-manual_br.ts index c35eecc1..b2a21fdd 100644 --- a/translations/deepin-manual_br.ts +++ b/translations/deepin-manual_br.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment @@ -28,23 +28,23 @@ Klask war-lerc'h "%1" en destenn en he fezh - + The content was updated - + Search Klask - + Support - + Copy Eilañ @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ktrl+Alt+F - + Ctrl+F Ktrl+F diff --git a/translations/deepin-manual_ca.ts b/translations/deepin-manual_ca.ts index 249a3259..df4b7d1f 100755 --- a/translations/deepin-manual_ca.ts +++ b/translations/deepin-manual_ca.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations Aprendre les operacions bàsiques - + Common Application Libraries Biblioteques d'aplicacions comunes - + Desktop Environment Entorn d'escriptori @@ -28,23 +28,23 @@ Cerca "%1" a tot el text - + The content was updated S'ha carregat el contingut. - + Search Cerca - + Support Assistència - + Copy Copia @@ -98,6 +98,11 @@ View all Mostra-ho tot + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_cs.ts b/translations/deepin-manual_cs.ts index 686482a6..3675d7f1 100755 --- a/translations/deepin-manual_cs.ts +++ b/translations/deepin-manual_cs.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment Desktopové prostředí @@ -28,23 +28,23 @@ Vyhledat „%1“ napříč celým textem - + The content was updated Obsah byl aktualizován - + Search Hledat - + Support Podpora - + Copy Zkopírovat @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_da.ts b/translations/deepin-manual_da.ts index c8b46e8f..6f214c84 100755 --- a/translations/deepin-manual_da.ts +++ b/translations/deepin-manual_da.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment @@ -28,23 +28,23 @@ Søg efter "%1" i den fulde tekst - + The content was updated - + Search Søg - + Support - + Copy Kopiér @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_de.ts b/translations/deepin-manual_de.ts index a273b55f..93ea91ce 100755 --- a/translations/deepin-manual_de.ts +++ b/translations/deepin-manual_de.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment Desktop-Umgebung @@ -28,23 +28,23 @@ Nach „%1“ im Volltext suchen - + The content was updated Der Inhalt wurde aktualisiert - + Search Suchen - + Support Unterstützung - + Copy Kopieren @@ -98,6 +98,11 @@ View all Alle ansehen + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Strg+Alt+F - + Ctrl+F Strg+F diff --git a/translations/deepin-manual_el.ts b/translations/deepin-manual_el.ts index f467224e..88fb45db 100755 --- a/translations/deepin-manual_el.ts +++ b/translations/deepin-manual_el.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment @@ -28,23 +28,23 @@ - + The content was updated - + Search Αναζήτηση - + Support - + Copy Αντιγραφή @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F - + Ctrl+F diff --git a/translations/deepin-manual_en.ts b/translations/deepin-manual_en.ts index 65b33619..2ec2bc2e 100644 --- a/translations/deepin-manual_en.ts +++ b/translations/deepin-manual_en.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment Desktop Environment @@ -82,23 +82,28 @@ - + + App Store + App Store + + + Search Search - + Support Support - + The content was updated The content was updated - + Copy Copy @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_es.ts b/translations/deepin-manual_es.ts index 7dc13434..fb8b07e4 100755 --- a/translations/deepin-manual_es.ts +++ b/translations/deepin-manual_es.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations Aprenda operaciones básicas - + Common Application Libraries Bibliotecas de aplicaciones comunes - + Desktop Environment Entorno de escritorio @@ -28,23 +28,23 @@ Buscar "%1" en el texto completo - + The content was updated El contenido fue actualizado - + Search Buscar - + Support Soporte - + Copy Copiar @@ -98,6 +98,11 @@ View all Ver todo + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl + Alt + F - + Ctrl+F Ctrl + F diff --git a/translations/deepin-manual_fi.ts b/translations/deepin-manual_fi.ts index da8d328b..bba79cd2 100755 --- a/translations/deepin-manual_fi.ts +++ b/translations/deepin-manual_fi.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations Opettele perustoiminnot - + Common Application Libraries Yleiset sovelluskirjastot - + Desktop Environment Työpöytäympäristö @@ -28,23 +28,23 @@ Etsi "%1" koko tekstistä - + The content was updated Sisältö päivitettiin - + Search Etsi - + Support Tuki - + Copy Kopio @@ -98,6 +98,11 @@ View all Näytä kaikki + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_fr.ts b/translations/deepin-manual_fr.ts index effcc0c8..9e240537 100755 --- a/translations/deepin-manual_fr.ts +++ b/translations/deepin-manual_fr.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment Environnement de bureau @@ -28,23 +28,23 @@ Rechercher "%1" dans tout le texte - + The content was updated Le contenu a été mis à jour - + Search Rechercher - + Support Support - + Copy Copie @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_gl_ES.ts b/translations/deepin-manual_gl_ES.ts index c6d1b3cc..7288a814 100755 --- a/translations/deepin-manual_gl_ES.ts +++ b/translations/deepin-manual_gl_ES.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment @@ -28,23 +28,23 @@ Buscar por "%1" en todo o texto - + The content was updated Actualizouse o contido - + Search Buscar - + Support Axuda - + Copy Copiar @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_hi_IN.ts b/translations/deepin-manual_hi_IN.ts index c70917fd..90753508 100644 --- a/translations/deepin-manual_hi_IN.ts +++ b/translations/deepin-manual_hi_IN.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment डेस्कटॉप वातावरण @@ -28,23 +28,23 @@ "%1" को संपूर्ण टेक्स्ट में खोजें - + The content was updated सामग्री अपडेट की गई - + Search खोजें - + Support समर्थन - + Copy कॉपी करें @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_hr.ts b/translations/deepin-manual_hr.ts index 0c8dabcd..b7671335 100644 --- a/translations/deepin-manual_hr.ts +++ b/translations/deepin-manual_hr.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment @@ -28,23 +28,23 @@ Traži "%1" u cijelom tekstu - + The content was updated - + Search Traži - + Support Podrška - + Copy Kopiraj @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_hu.ts b/translations/deepin-manual_hu.ts index 9961c7c4..3a58b1fe 100644 --- a/translations/deepin-manual_hu.ts +++ b/translations/deepin-manual_hu.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations Alapvető műveletek megismerése - + Common Application Libraries Közös alkalmazás könyvtárak - + Desktop Environment Asztali Környezet @@ -28,23 +28,23 @@ "% 1" kifejezés keresése a teljes szövegben - + The content was updated A tartalom frissítve - + Search Keresés - + Support Támogatás - + Copy Másolás @@ -98,6 +98,11 @@ View all Összes megtekintése + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_id.ts b/translations/deepin-manual_id.ts index 11da4bf3..027cdfcf 100755 --- a/translations/deepin-manual_id.ts +++ b/translations/deepin-manual_id.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment @@ -28,23 +28,23 @@ - + The content was updated - + Search Pencarian - + Support - + Copy Salin @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_it.ts b/translations/deepin-manual_it.ts index 59461d7c..086fd001 100755 --- a/translations/deepin-manual_it.ts +++ b/translations/deepin-manual_it.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment Desktop Environment @@ -28,23 +28,23 @@ Ricerca di "%1" anche nei contenuti - + The content was updated Il contenuto è stato aggiornato - + Search Cerca - + Support Supporto - + Copy Copia @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_ja.ts b/translations/deepin-manual_ja.ts index ca6333bb..c8e142ea 100755 --- a/translations/deepin-manual_ja.ts +++ b/translations/deepin-manual_ja.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment @@ -28,23 +28,23 @@ - + The content was updated - + Search 検索 - + Support - + Copy コピー @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F - + Ctrl+F diff --git a/translations/deepin-manual_ko.ts b/translations/deepin-manual_ko.ts index a71fef1d..314798e7 100755 --- a/translations/deepin-manual_ko.ts +++ b/translations/deepin-manual_ko.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment @@ -28,23 +28,23 @@ 전체 텍스트에서 "%1" 검색 - + The content was updated - + Search 검색 - + Support 지원 - + Copy 복사 @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_lt.ts b/translations/deepin-manual_lt.ts index af7bedc7..050a09a5 100755 --- a/translations/deepin-manual_lt.ts +++ b/translations/deepin-manual_lt.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment @@ -28,23 +28,23 @@ Ieškoti "%1" visame tekste - + The content was updated - + Search Ieškoti - + Support - + Copy Kopijuoti @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Vald+Alt+F - + Ctrl+F Vald+F diff --git a/translations/deepin-manual_ms.ts b/translations/deepin-manual_ms.ts index d7075337..1b2eb073 100755 --- a/translations/deepin-manual_ms.ts +++ b/translations/deepin-manual_ms.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment Persekitaran Atas Meja @@ -28,23 +28,23 @@ Gelintar "%1" dalam teks penuh - + The content was updated Kandungan telah dikemas kini - + Search Gelintar - + Support Sokongan - + Copy Salin @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_nl.ts b/translations/deepin-manual_nl.ts index b855a065..e7a497fe 100755 --- a/translations/deepin-manual_nl.ts +++ b/translations/deepin-manual_nl.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations Basishandelingen leren - + Common Application Libraries Veelvoorkomende programmabibliotheken - + Desktop Environment Werkomgeving @@ -28,23 +28,23 @@ '%1' zoeken in de hele tekst - + The content was updated De inhoud is bijgewerkt - + Search Zoeken - + Support Ondersteuning - + Copy Kopiëren @@ -98,6 +98,11 @@ View all Alles bekijken + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_pl.ts b/translations/deepin-manual_pl.ts index 4ea8431f..255df250 100755 --- a/translations/deepin-manual_pl.ts +++ b/translations/deepin-manual_pl.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations Poznaj podstawowe operacje - + Common Application Libraries Powszechne biblioteki aplikacji - + Desktop Environment Środowisko pulpitowe @@ -28,23 +28,23 @@ Szukaj „%1” w całym tekście - + The content was updated Zawartość została zaktualizowana - + Search Szukaj - + Support Wsparcie - + Copy Kopiuj @@ -98,6 +98,11 @@ View all Zobacz wszystko + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_pt.ts b/translations/deepin-manual_pt.ts index b9aaf333..14d7c7dd 100755 --- a/translations/deepin-manual_pt.ts +++ b/translations/deepin-manual_pt.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment Ambiente de trabalho @@ -28,23 +28,23 @@ Pesquisar por "%1" no texto todo - + The content was updated O conteúdo foi atualizado - + Search Pesquisar - + Support Suporte - + Copy Copiar @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_pt_BR.ts b/translations/deepin-manual_pt_BR.ts index b160c61e..f200f7c9 100755 --- a/translations/deepin-manual_pt_BR.ts +++ b/translations/deepin-manual_pt_BR.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment Desktop Environment @@ -28,23 +28,23 @@ Pesquisar por "%1" em todo o texto - + The content was updated O conteúdo foi atualizado - + Search Pesquisar - + Support Suporte - + Copy Copiar @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_ru.ts b/translations/deepin-manual_ru.ts index 0a147fa7..7c581a4f 100755 --- a/translations/deepin-manual_ru.ts +++ b/translations/deepin-manual_ru.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment Среда рабочего стола @@ -28,23 +28,23 @@ Искать «%1» во всём тексте - + The content was updated Содержание было обновлено - + Search Поиск - + Support Поддержка - + Copy Копировать @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_sk.ts b/translations/deepin-manual_sk.ts index 35e15bbc..685a63d5 100755 --- a/translations/deepin-manual_sk.ts +++ b/translations/deepin-manual_sk.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment @@ -28,23 +28,23 @@ - + The content was updated - + Search Vyhľadávanie - + Support - + Copy Kopírovať @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F - + Ctrl+F diff --git a/translations/deepin-manual_sl.ts b/translations/deepin-manual_sl.ts index e8fc0627..0256e669 100755 --- a/translations/deepin-manual_sl.ts +++ b/translations/deepin-manual_sl.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment Namizno okolje @@ -28,23 +28,23 @@ Poišči "%1" v celotnem besedilu - + The content was updated Vsebina je bila posodobljena - + Search Išči - + Support Podpora - + Copy Kopija @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_sq.ts b/translations/deepin-manual_sq.ts index 51742016..f28c17c2 100644 --- a/translations/deepin-manual_sq.ts +++ b/translations/deepin-manual_sq.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations Mësoni Veprime Elementare - + Common Application Libraries Biblioteka të Rëndomta Aplikacionesh - + Desktop Environment Mjedis Desktop @@ -28,23 +28,23 @@ Kërko për "%1" në tërë tekstin - + The content was updated Lënda u përditësua - + Search Kërko - + Support Asistencë - + Copy Kopjoje @@ -98,6 +98,11 @@ View all Shihini krejt + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_sr.ts b/translations/deepin-manual_sr.ts index 3d2f089f..49234a64 100755 --- a/translations/deepin-manual_sr.ts +++ b/translations/deepin-manual_sr.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment Радно окружење @@ -28,23 +28,23 @@ Тражи "%1" у целом тексту - + The content was updated Садржај је ажуриран - + Search Претражи - + Support Подршка - + Copy Копирај @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_tr.ts b/translations/deepin-manual_tr.ts index 7cba4ea2..90ad4485 100755 --- a/translations/deepin-manual_tr.ts +++ b/translations/deepin-manual_tr.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations - + Common Application Libraries - + Desktop Environment Masaüstü Ortamı @@ -28,23 +28,23 @@ Tam metinde "%1" ifadesini ara - + The content was updated İçerik güncellendi - + Search Ara - + Support Destek - + Copy Kopyala @@ -98,6 +98,11 @@ View all + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_ug.ts b/translations/deepin-manual_ug.ts index 2e6a8ebe..90ffa34b 100755 --- a/translations/deepin-manual_ug.ts +++ b/translations/deepin-manual_ug.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations ئاساسىي مەشغۇلاتنى چۈشىنىش - + Common Application Libraries دائىملىق ئەپلەر - + Desktop Environment ئۈستەليۈزى مۇھىتى @@ -28,23 +28,23 @@ “%1”پۈتۈن مەزمۇن ئىچىدىن ئىزدەۋاتىدۇ - + The content was updated نۆۋەتتتىكى مەزمۇن يېڭىلانغان - + Search ئىزدەش - + Support قوللاش - + Copy نۇسخىلاش @@ -98,6 +98,11 @@ View all ھەممىنى كۆرۈش + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_uk.ts b/translations/deepin-manual_uk.ts index e72477b3..d78b02c8 100755 --- a/translations/deepin-manual_uk.ts +++ b/translations/deepin-manual_uk.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations Вивчення основних дій - + Common Application Libraries Загальні бібліотеки програм - + Desktop Environment Стільничне середовище @@ -28,23 +28,23 @@ Шукати «%1» у всьому тексті - + The content was updated Дані було оновлено - + Search Шукати - + Support Підтримка - + Copy Копіювати @@ -98,6 +98,11 @@ View all Переглянути усе + + + App Store + + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_zh_CN.ts b/translations/deepin-manual_zh_CN.ts index 733a6b47..687b1501 100755 --- a/translations/deepin-manual_zh_CN.ts +++ b/translations/deepin-manual_zh_CN.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations 了解基本操作 - + Common Application Libraries 常用应用库 - + Desktop Environment 桌面环境 @@ -28,23 +28,23 @@ 在全文中搜索“%1” - + The content was updated 当前内容已更新 - + Search 搜索 - + Support 服务与支持 - + Copy 复制 @@ -98,6 +98,11 @@ View all 查看全部 + + + App Store + 应用商店 + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_zh_HK.ts b/translations/deepin-manual_zh_HK.ts index 61406535..429f2612 100644 --- a/translations/deepin-manual_zh_HK.ts +++ b/translations/deepin-manual_zh_HK.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations 了解基本操作 - + Common Application Libraries 常用應用庫 - + Desktop Environment 桌面環境 @@ -28,23 +28,23 @@ 在全文中搜索“%1” - + The content was updated 當前內容已更新 - + Search 搜索 - + Support 服務與支持 - + Copy 複製 @@ -98,6 +98,11 @@ View all 查看全部 + + + App Store + 應用商店 + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F diff --git a/translations/deepin-manual_zh_TW.ts b/translations/deepin-manual_zh_TW.ts index 1754d6fd..8d146ad0 100755 --- a/translations/deepin-manual_zh_TW.ts +++ b/translations/deepin-manual_zh_TW.ts @@ -4,17 +4,17 @@ ManualProxy - + Learn Basic Operations 了解基本操作 - + Common Application Libraries 常用應用庫 - + Desktop Environment 桌面環境 @@ -28,23 +28,23 @@ 「%1」的搜尋結果 - + The content was updated 當前內容已更新 - + Search 搜尋 - + Support 服務與支持 - + Copy 複製 @@ -98,6 +98,11 @@ View all 查看全部 + + + App Store + 應用商店 + Manual @@ -112,12 +117,12 @@ WebWindow - + Ctrl+Alt+F Ctrl+Alt+F - + Ctrl+F Ctrl+F